WPF
self321
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
C# 程序查询 Windows Service相关信息
查询Windows Service的所有数据需要引入using System.ServiceProcessServiceController[] Services = ServiceController.GetServices();for (int i = 0; i < Services.Length; i++){ if (Services[i].ServiceType...原创 2020-03-25 15:15:52 · 514 阅读 · 0 评论 -
WPF 控件样式属性绑定
Xaml页面创建模板控件,绑定颜色关键字<Window.Resources> <!--创建颜色关键字--> <local:DataColorConverter x:Key="DataColorConverterStyle"/> <!--创建控件模板--> <DataTemp...原创 2020-03-25 11:10:03 · 1910 阅读 · 0 评论 -
WPF 资源文件的调用
工程右键【属性】->【资源】->添加文件。 右键点击文件选择【属性】->【生成操作】->嵌入资源 代码 Assembly assm = Assembly.GetExecutingAssembly();Stream istr = assm.GetManifestResourceStream("AIP.Resources.SQLStatement.sql");//A...原创 2019-09-05 14:21:34 · 531 阅读 · 0 评论
分享