摘要: 页面: <Window xmlns:local="clr-namespace:项目名称.Common" /> <PasswordBox local:PasswordBoxHelper.Attach="True" local:PasswordBoxHelper.Password="{Binding P 阅读全文
posted @ 2022-07-14 16:29 Yhzwei 阅读(440) 评论(0) 推荐(0) 编辑
摘要: xaml: <ScrollViewer x:Name="sv" CanContentScroll="False" PreviewMouseWheel="ScrollViewer_PreviewMouseWheel" > </ScrollViewer> 后台: private void ScrollV 阅读全文
posted @ 2022-03-22 17:30 Yhzwei 阅读(534) 评论(0) 推荐(0) 编辑
摘要: 与: true && true = true true && false = false false && true= false false && false = false 或: true || true = true true || false = true false || true = t 阅读全文
posted @ 2022-03-17 17:08 Yhzwei 阅读(123) 评论(0) 推荐(0) 编辑
摘要: wpf中 赋值给ui控件数据时会报错“调用线程无法访问此对象,因为另一个线程拥有该对象。” 解决办法: this.Dispatcher.Invoke((Action)delegate () { 控件.ItemsSource = 数据; }); 或者 App.Current.Dispatcher.In 阅读全文
posted @ 2022-02-22 18:02 Yhzwei 阅读(2296) 评论(0) 推荐(0) 编辑
摘要: @echo offat 14:21 start /min /w mshta vbscript:setTimeout("window.close()",50000) taskkill /im 程序.exe /f 阅读全文
posted @ 2022-02-18 18:11 Yhzwei 阅读(236) 评论(0) 推荐(0) 编辑
摘要: select a.* from testTable a inner join (select id,MAX(InDate) as InDate from testTable group by id) b on a.id=b.id and a.InDate =b.InDate 阅读全文
posted @ 2022-02-15 17:43 Yhzwei 阅读(1624) 评论(0) 推荐(0) 编辑
摘要: 前台 <oxy:PlotView Model="{Binding DynamicCurve}" /> Model中 public PlotModel DynamicCurve{ get; set; } public void PlotViewModel() { DynamicCurve = new 阅读全文
posted @ 2021-03-15 17:26 Yhzwei 阅读(1806) 评论(0) 推荐(0) 编辑
摘要: 在wpf中实现treeview的功能,可能看到很多分享的都是简单的绑定,仅此记录自己完成的功能。 前台 <TreeView x:Name="chapterTree" Grid.Column="0" SelectedItemChanged="chapterTree_SelectedItemChange 阅读全文
posted @ 2021-03-15 16:27 Yhzwei 阅读(900) 评论(0) 推荐(1) 编辑