场景: WPF界面调用C++动态库,由于库的名称不是固定的,因此没法用DllImport,想到了用windows api中的LoadLibrary,一番折腾后调用成功 关键代码: [DllImport("kernel32.dll")] private extern static IntPtr Loa ...
分类:
编程语言 时间:
2021-06-10 17:47:35
阅读次数:
0
WPF public void DataGridBinDingTime(){ List<string> times = new List<string>(); string time = _startTime.SelectedValue.ToString(); string[] arr = time ...
分类:
其他好文 时间:
2021-06-05 17:34:23
阅读次数:
0
昨天有前辈建议我学WPF,非常开心能有前人指路。 今天上午有些事请假了,所以才来公司 来公司之后先回复了前辈,然后上网查了查WPF。昨天用了一天的时间总算把SQL语言的课听完了。还差一节,这就去听 我听的是这个链接:https://www.bilibili.com/video/BV1Xo4y127T ...
分类:
其他好文 时间:
2021-06-04 19:23:17
阅读次数:
0
自动注入补充的点: 1:AutowireMode 之前博客中讲到@Autowire,@Value,@Inject自动注入的处理都是在后置处理器 AutowiredAnnotationBeanPostProcessor#postProcessProperties中,这个后置处理器的调用是在 Abstr ...
分类:
编程语言 时间:
2021-06-04 18:58:16
阅读次数:
0
https://www.tessferrandez.com/blog/2008/03/25/net-debugging-demos-lab-7.html This is the last debugging lab in the .NET Debugging Labs series. By now ...
分类:
Web程序 时间:
2021-06-02 14:43:49
阅读次数:
0
引入依赖 <!-- https://mvnrepository.com/artifact/org.springframework.kafka/spring-kafka --> <dependency> <groupId>org.springframework.kafka</groupId> <art ...
分类:
编程语言 时间:
2021-06-02 14:22:43
阅读次数:
0
本文是篇WPF Shape的入门文章 Shape 首先看看shape的继承链关系: 一个Shape具有哪些重要属性: 属性 说明 DefiningGeometry 默认的几何形状 RenderedGeometry 最终渲染后呈现的几何形状 Stroke 绘制的形状轮廓加上画刷(颜色) StrokeT ...
WPF: 前台代码: <Grid> <DataGrid AutoGenerateColumns="True" Height="211" HorizontalAlignment="Left" Margin="27,34,0,0" Name="dataGrid1" VerticalAlignment=" ...
分类:
其他好文 时间:
2021-06-02 12:57:58
阅读次数:
0
在 WPF 用的多的列表控件如 ListBox 或 ListView 等,本文告诉大家在这些列表控件上进行绑定多个数据集合来源的多个实现方法。如有一个显示动物列表的控件,需要绑定的数据来源是阿猫和阿狗两个 ObservableCollection 列表,不在后台代码编写合并集合的代码情况下,可以通过... ...
WPF if (e.RemovedItems.Count>0) { //这里面是你要写的内容 } 具体解决问题: 在你的ComboBox下拉控件中有SelectionChanged事件,页面首次加载时你得SelectionChanged事件会报错, 页面首次加载时你的程序会走SelectionCha ...
分类:
其他好文 时间:
2021-06-02 11:54:33
阅读次数:
0