需要想法使用数据表在 Windows 应用程序中创建动态菜单条
菜单样式:
文件 .工具
-文件1 -工具1
-文件2 -工具2
-file3 -tool3
数据表包含类似的行。
col1 col2
------------
文件文件1
文件文件2
文件文件3
工具工具1
工具工具2
工具工具3
如何将我的数据表值动态绑定到菜单条中我动态地从数据库获取数据表值。
根据我的数据表值,菜单应该显示在我的表单中。
Menu style:
File . Tool
-file1 -tool1
-file2 -tool2
-file3 -tool3
datable contains the rows like.
col1 col2
------------
File file1
File file2
File file3
Tool tool1
Tool tool2
Tool tool3
How to bind my data table value into menu strip dynamically i get my data table values from database dynamically.
Based on my data table value the menu should display in my form.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您从数据库表构建菜单,则可以通过将其连接到根据权限集排除记录的另一个表或视图来安全地修剪它。
下图说明了为用户设置角色权限的基础知识,并包含几个其他表格,用于安全调整表单上的各个控件。
Windows 窗体应用程序中基于控制的安全性
If you are building the menu from a database table, you can security trim it by joining it to another table or view that excludes records on the basis of the permissions set.
The diagram below illustrates the basics of setting up role permissions for users, and contains a couple of other tables for security trimming individual controls on the form as well.
Controls Based Security in a Windows Forms Application