当前位置:
首页 > Python基础教程 >
-
C#教程之c#使用Dataset读取XML文件动态生成菜单的方
本文实例讲述了c#使用Dataset读取XML文件动态生成菜单的方法。分享给大家供大家参考。具体实现方法如下:
Step 1:Form1 上添加一个ToolStripContainer控件
Step2:实现代码
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
|
private void Form2_Load( object sender, EventArgs e) { CMenuEx menu = new CMenuEx(); if (menu.FileExit()) { menu.LoadAllMenu(sPath, toolStripContainer1); //读取xml来加载菜单 } else { MessageBox.Show( "XML文件加载失败!" ); } } /// <summary> /// 菜单读取类 /// </summary> public class CMenuEx { private string _Path; /// <summary> /// 设置XML配置文件路径 /// </summary> public string Path { get { return _Path; } set { _Path = value; } } /// <summary> /// 判断文件是否存在 /// </summary> /// <returns>文件是否存在</returns> public bool FileExit() { if (File.Exists(_Path)) { return true ; } else return false ; } /// <summary> /// 加载菜单 /// </summary> /// <param name="menuStrip">母菜单对象</param> public void LoadAllMenu( string sXmlPath, ToolStripContainer pToolStripContainer) { DataSet ds = new DataSet(); ds.ReadXml(sXmlPath, XmlReadMode.Auto); string ToolStripPanelType = "TopToolStripPanel" ; //查找所有最初一级的菜单 DataView dvMenuOptions = new DataView(ds.Tables[ "MenuOptions" ], "ParentLevel=ID and ToolStripPanelType='" + ToolStripPanelType + "'" , "DisplayOrder Asc" , DataViewRowState.CurrentRows); string sParentLevel = "" ; ToolStripPanel tspTop = pToolStripContainer.TopToolStripPanel; tspTop.Dock = DockStyle.Top; ToolStrip tsTop = new ToolStrip(); tspTop.Join(tsTop); //绑定ToolStrip foreach (DataRowView rvMain in dvMenuOptions) //循环得到主菜单 { sParentLevel = rvMain[ "ParentLevel" ].ToString(); ToolStripMenuItem tsItemParent = new ToolStripMenuItem(); tsItemParent.Text = rvMain[ "Text" ].ToString(); tsItemParent.Name = rvMain[ "Name" ].ToString(); tsTop.Items.Add(tsItemParent); //添加父菜单 //查找父菜单下的所有子菜单 DataView dvSub = new DataView(ds.Tables[ "MenuOptions" ], "ParentLevel<>ID and ParentLevel='" + sParentLevel + "'" , "DisplayOrder" , DataViewRowState.CurrentRows); foreach (DataRowView rvSub in dvSub) { ToolStripMenuItem itemSub = new ToolStripMenuItem(); itemSub.Text = rvSub[ "Text" ].ToString() + " " + rvSub[ "ShortCutKeys" ].ToString(); //为菜单添加单击事件 itemSub.Click += new EventHandler(toolSubItem_Click); //菜单响应函数 itemSub.Name = rvSub[ "Method" ].ToString(); tsItemParent.DropDownItems.Add(itemSub); } } } //自定义消息响应函数 void toolSubItem_Click( object sender, EventArgs e) { //创建菜单调用方法类的实例 MenuMethod menuMethod = new MenuMethod(); Type type = menuMethod.GetType(); //动态获取方法对象 MethodInfo mi = type.GetMethod(((ToolStripMenuItem)sender).Name); //调用指定方法 if (mi != null ) { mi.Invoke(menuMethod, null ); } } /// <summary> /// 菜单的方法列表类 /// </summary> class MenuMethod { public void New() { MessageBox.Show( "New" ); } public void Open() { MessageBox.Show( "Open" ); } } } |
附:xml内容:
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
<? xml version = "1.0" encoding = "GB2312" ?> < Menus > < MenuOptions > < ID >3766e9a2-7955-44eb-ad87-91ccb798baa7</ ID > < ParentLevel >3766e9a2-7955-44eb-ad87-91ccb798baa7</ ParentLevel > < DisplayOrder >1</ DisplayOrder > < ToolBarItemType >ToolStripButton</ ToolBarItemType > < ToolStripItemDisplayStyle >ImageAndText</ ToolStripItemDisplayStyle > < ToolStripPanelType >TopToolStripPanel</ ToolStripPanelType > < ToolStripDisplayPosition >1</ ToolStripDisplayPosition > < TDTVisible >True</ TDTVisible > < ShortCutKeys /> < Text >文档工具栏</ Text > < Name >DocTool</ Name > < Image /> < Expression /> < Assembly /> </ MenuOptions > < MenuOptions > < ID >fd75638f-6c10-473d-b6e6-bdfd2c7931d6</ ID > < ParentLevel >3766e9a2-7955-44eb-ad87-91ccb798baa7</ ParentLevel > < DisplayOrder >0</ DisplayOrder > < ToolBarItemType >ToolStripButton</ ToolBarItemType > < ToolStripItemDisplayStyle >Image</ ToolStripItemDisplayStyle > < ToolStripPanelType /> < ToolStripDisplayPosition /> < TDTVisible >True</ TDTVisible > < ShortCutKeys >Ctrl+N</ ShortCutKeys > < Text >新建地图文档</ Text > < Method >New</ Method > < Image >/img/New.ico</ Image > < Expression /> < Assembly /> </ MenuOptions > < MenuOptions > < ID >9c6238d5-b47d-4b08-933c-ea7c74f6b586</ ID > < ParentLevel >3766e9a2-7955-44eb-ad87-91ccb798baa7</ ParentLevel > < DisplayOrder >1</ DisplayOrder > < ToolBarItemType >ToolStripButton</ ToolBarItemType > < ToolStripItemDisplayStyle >Image</ ToolStripItemDisplayStyle > < ToolStripPanelType /> < ToolStripDisplayPosition /> < TDTVisible >True</ TDTVisible > < ShortCutKeys >Ctrl+O</ ShortCutKeys > < Text >打开文档</ Text > < Method >Open</ Method > < Image >/ico/open.ico</ Image > < Expression >Com.Linjon.ArcGIS.PlugIn.File.OpenDocCmd</ Expression > < Assembly >Com.Linjon.ArcGIS.PlugIn.dll</ Assembly > </ MenuOptions > </ Menus > |
希望本文所述对大家的C#程序设计有所帮助。
栏目列表
最新更新
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
Python初学者友好丨详解参数传递类型
如何有效管理爬虫流量?
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比
一款纯 JS 实现的轻量化图片编辑器
关于开发 VS Code 插件遇到的 workbench.scm.
前端设计模式——观察者模式
前端设计模式——中介者模式
创建型-原型模式