看板 million
作者 標題 [note] 程式工具
時間 2015年01月21日 Wed. PM 04:54:04
可拖曳item listview
http://www.apkbus.com/android-70382-1-1.html
影片 ListView可拖曳 https://www.youtube.com/watch?v=_BZIvjMgH-Q
C# 如何把檔案鎖住不讓其他人動
http://stackoverflow.com/questions/5522232/how-to-lock-a-file-with-c
C# 如何砍掉裡面有檔案的資料夾
http://stackoverflow.com/questions/1288718/how-to-delete-all-files-and-folders-in-a-directory
C# 如何砍掉裡面有檔案又有資料夾的資料夾 (注意!答案在最佳解答的評論中)
http://stackoverflow.com/questions/329355/cannot-delete-directory-with-directory-deletepath-true
Android出現 Unable to resolve target 'android-X' 的對應法
http://sagistech.blogspot.tw/2010/05/android-sdk-error-unable-to-resolve.html
shell script 的字串處理與說明
http://blog.xuite.net/tolarku/blog/83050297-[Shell+Script]+簡單說明
鳥哥的 grep shell 正規表示式
http://linux.vbird.org/linux_basic/0330regularex.php
用 adb 取得目前 android 裝置的方向(水平或垂直)
http://stackoverflow.com/questions/10040624/check-if-device-is-landscape-via-adb
C# 如何使用內嵌資源
https://support.microsoft.com/zh-tw/kb/319292/zh-tw
C# 如何從內嵌資源裡面抽出檔案存入硬碟
http://stackoverflow.com/questions/798655/embedding-an-external-executable-inside-a-c-sharp-program
C# 怎麼旋轉 picture box?
https://tw.knowledge.yahoo.com/question/question?qid=1009082610665
C# 自製 log
http://ww0o0ww.pixnet.net/blog/post/93834515
http://mogerwu.pixnet.net/blog/post/28856780
C# 跨執行緒作業無效 的解法: delegate
http://sam33-home.blogspot.tw/2014/09/c.html
C# 如何把檔案加入VS專案內
http://code2study.blogspot.tw/2012/01/resourceexe.html
C# 如何在專案內部建立並內嵌自訂檔案
http://huangjung1216.pixnet.net/blog/post/183090621
反編譯 Android apk 檔案的方法
http://my.oschina.net/u/183622/blog/32315
這裡感覺很多好工具
http://my.oschina.net/u/183622?disp=2&p=9&catalog=0
多執行緒的教學1: MUTEX (MUTual EXclusion) https://kheresy.wordpress.com/2012/07/11/multi-thread-programming-in-c-thread-p2/
C# 跨執行緒解法整理:
<1> 在主視窗 (或包含了「要執行的method」) 的class 裡面 (以下稱這個class為目標class),
宣告一個 myDelegate 型態變數.
視要執行的 method 的傳入變數, 傳出變數型態, 來宣告. 以下例:
// 要執行的method 其返回型態為 void, 傳入變數為一個 string變數
public delegate void myDelegate(string txt);
<2> 在同scale, 以這個型態變數, 宣告出一個委派物件. 例: public myDelegate md;
<3> 程式初始化時 (或其他時機), 把這個委派物件加上「要執行的method名稱. 只要名稱就好」. 以下例:
md = new myDelegate(set_txtbox_debugmessage);
// 或
md += new myDelegate(set_txtbox_debugmessage);
<4> 最後一步, 在要呼叫的class 裡面, 呼叫目標class的 Invoke() 方法.
第一個傳入參數放目標class的委派物件, 第二個參數放要傳進去「被呼叫方法的傳入參數」.
多形的解說http://www.moke.tw/wordpress/computer/programming/397
--
※ 作者: emulators 時間: 2015-01-21 16:54:04
※ 編輯: emulators 時間: 2015-07-26 10:57:47
※ 看板: million 文章推薦值: 0 目前人氣: 0 累積人氣: 149
回列表(←)
分享