摘要:
以下边xml文件为例子: <?xml version="1.0" encoding="utf-8"?> <Root> <Test name ="A8作动筒"> <testResult Title="试验结果为:"> <value>启动压力1:{}MPa</value> <value>启动压力2:{} 阅读全文
posted @ 2022-08-07 09:18
李大军
阅读(234)
评论(0)
推荐(0)
|
摘要:
以下边xml文件为例子: <?xml version="1.0" encoding="utf-8"?> <Root> <Test name ="A8作动筒"> <testResult Title="试验结果为:"> <value>启动压力1:{}MPa</value> <value>启动压力2:{} 阅读全文
posted @ 2022-08-07 09:18
李大军
阅读(234)
评论(0)
推荐(0)
摘要:
可在此表中获取此数据库的信息 比如查询此数据库中所有的表名称 select name from sqlite_master where type='table' order by name 或者查看该系统表的所有信息 select *from sqlite_master 阅读全文
posted @ 2021-11-08 22:35
李大军
阅读(120)
评论(0)
推荐(0)
摘要:
1 <Window.Resources> 2 <Style x:Key="ImageAnimationStyle" TargetType="Image"> 3 <Style.Triggers> 4 <DataTrigger Binding="{Binding IsRotate}" Value="tr 阅读全文
posted @ 2021-11-07 14:18
李大军
阅读(379)
评论(0)
推荐(0)
摘要:
第一个地址 https://nuget.cdn.azure.cn/v3/index.json 第二个地址 https://www.nuget.org/api/v2/ 阅读全文
posted @ 2021-10-21 22:28
李大军
阅读(48)
评论(0)
推荐(0)
摘要:
在 App.cs 的 OnStartup函数加入如下代码 1 protected override void OnStartup(StartupEventArgs e) 2 { 3 FrameworkCompatibilityPreferences.KeepTextBoxDisplaySynchro 阅读全文
posted @ 2021-09-30 23:31
李大军
阅读(445)
评论(0)
推荐(0)
摘要:
只需要在XAML中增加如下代码就可以,还能解决窗口最大化全屏的问题,作者原地址为: (19条消息) 【WPF】1行代码解决WindowStyle="None"时无法调节窗口大小的问题_h3110w0r1d的博客-CSDN博客 1 <WindowChrome.WindowChrome> 2 <Wind 阅读全文
posted @ 2021-09-17 22:33
李大军
阅读(290)
评论(0)
推荐(0)
摘要:
PasswordBoxHelper类实现 1 public class PasswordHelper 2 { 3 //password附加依赖属性 4 public static string GetPassword(DependencyObject obj) 5 { 6 return (strin 阅读全文
posted @ 2021-09-02 11:27
李大军
阅读(857)
评论(0)
推荐(0)
摘要:
这是WeihanLi博主写的实例代码,我主要是做一个笔记,完整的请查看C#加密算法总结 - WeihanLi - 博客园 (cnblogs.com) 1 public static string GetMD5(string strPwd) 2 { 3 //MD5 对象创建的两种方式 4 //MD5 阅读全文
posted @ 2021-08-30 14:41
李大军
阅读(219)
评论(0)
推荐(0)
|