上一页 1 ··· 3 4 5 6 7 8 9 10 下一页
摘要: WPF的绑定实在是太强大了 1、正常情况下,我们的绑定是这样的,打印HelloWorld <TextBlock Width="200" Height="30" FontSize="20" Text="{Binding Content}"/> private string _content; publ 阅读全文
posted @ 2024-03-08 09:06 孤沉 阅读(17) 评论(0) 推荐(0) 编辑
摘要: 1、ItemsControl用来显示一个数据项的集合,它的底层是一个列表,它可以非常灵活的展示布局和数据 以下是例子 <ItemsControl ItemsSource="{Binding Student}"> <ItemsControl.ItemTemplate> <DataTemplate> < 阅读全文
posted @ 2024-03-08 08:56 孤沉 阅读(139) 评论(0) 推荐(0) 编辑
摘要: 在使用WPF的时候对int或者bool类型进行绑定出现InvalidCastException: T for DelegateCommand is not an object nor Nullable. <Button Width="200" Height="30" Content="按钮" Com 阅读全文
posted @ 2024-03-06 12:25 孤沉 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 在WPF中有时候不想将命令写在List中,但是却要在前端绑定的List中写入命令 暂时知道两种解决方法 1、 Command="{Binding DataContext.NavicateCommand, RelativeSource={RelativeSource AncestorType=List 阅读全文
posted @ 2024-02-26 17:30 孤沉 阅读(42) 评论(0) 推荐(0) 编辑
摘要: 在C#中父类可以直接转子类,叫做协变 子类转父类需要添加强制转换,叫做逆变 public class Person { } public class Student:Person { } var p = new Person(); p = new Student(); //协变是父类转子类,可以直接 阅读全文
posted @ 2024-02-23 09:49 孤沉 阅读(15) 评论(0) 推荐(0) 编辑
摘要: 1、自定义配置 <?xml version="1.0" encoding="utf-8" ?> <configuration> <log4net> <appender name="RollingLogFileAppender" type="log4net.Appender.RollingFileAp 阅读全文
posted @ 2024-02-21 20:37 孤沉 阅读(13) 评论(0) 推荐(0) 编辑
摘要: 1、我们在做工控项目的时候通常设置配方的上下限 这个时候要求OK数在上下限范围之内,否则NG 首先我们绑定一个简单的List用来展示数据,我这里用学生Age来展示 <ListView ItemsSource="{Binding DataList}" Margin="20"> <ListView.Vi 阅读全文
posted @ 2024-02-02 22:28 孤沉 阅读(77) 评论(0) 推荐(0) 编辑
摘要: /// <summary> /// PLC处理器 /// </summary> public interface IPlcHandler { void Request(IPlcContext context); } /// <summary> /// PLC的数据上下文 /// </summary> 阅读全文
posted @ 2024-01-23 20:32 孤沉 阅读(8) 评论(0) 推荐(0) 编辑
摘要: 上位机使用Hsl框架连接PLC 顺便讲下策略模式 话不多说,直接上代码 public interface IPlcHost { bool ConnectionPlc(string path); } public class FastPlcHost : IPlcHost { private Sieme 阅读全文
posted @ 2024-01-20 13:28 孤沉 阅读(34) 评论(0) 推荐(0) 编辑
摘要: 1、现在我介绍一个类库NewLife,非常流批 先介绍它读取json吧 WPF前台随便绑定一下 <TextBlock Text="{Binding ArticleText}" VerticalAlignment="Center" HorizontalAlignment="Center" FontSi 阅读全文
posted @ 2024-01-17 00:07 孤沉 阅读(18) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 下一页