開發Windows Mobile簡單dict字典-以SQLite為例 (2)
1: Path.GetDirectoryName(System.Reflection.Assembly.GetExecutingAssembly().GetName().CodeBase)
1: class PMenuItem: MenuItem
2: {
3: protected override void OnClick(EventArgs e)
4: {
5: //base.OnClick(e);
6: List<PMenuItem> itemList = ApplicationContext.LoadDictionaries();
7: if (itemList != null)
8: {
9: int count = itemList.Count;
10: for (int i = 0; i < count; i++)
11: {
12: if (this.Text != itemList[i].Text)
13: itemList[i].Checked = false;
14: }
15: }
16: this.Checked = true;
17: ApplicationContext.setDBFilePath(ApplicationContext.getAppDIRPath() + this.Text + ".db");
18: ApplicationContext.setSQLiiteConnector();
19: ApplicationContext.setConfigValue(ApplicationContext._defaultDICT, this.Text);
20: }
21: }
1: public static List<PMenuItem> LoadDictionaries()
2: {
3: ItemList = new List<PMenuItem>();
4: string[] dbFiles = Directory.GetFiles(appDIRPath, "*.db");
5: int count = dbFiles.Length;
6: if (count >= 0)
7: {
8: int x, y;
9: count = dbFiles.Length;
10: for (int i = 0; i < count; i++) {
11: x = dbFiles[i].LastIndexOf("\\") + 1;
12: y = dbFiles[i].IndexOf(".");
13: PMenuItem objItem = new PMenuItem();
14: objItem.Text = dbFiles[i].Substring(x, y - x);
15: ItemList.Add(objItem);
16: }
17: return ItemList;
18: }
19: else {
20: return null;
21: }
22: }
1: System.Diagnostics.Process.Start("iexplore.exe", http://www.dotblogs.com.tw/pou);