会员
周边
众包
新闻
博问
闪存
赞助商
Chat2DB
所有博客
当前博客
我的博客
我的园子
账号设置
简洁模式
...
退出登录
注册
登录
Yhzwei
博客园
首页
新随笔
联系
管理
订阅
2022年7月14日
wpf中PassWord绑定
摘要: 页面: <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)
编辑
2022年3月22日
wpf 中使用ScrollViewer 时鼠标滑轮按照内容进行滚动
摘要: xaml: <ScrollViewer x:Name="sv" CanContentScroll="False" PreviewMouseWheel="ScrollViewer_PreviewMouseWheel" > </ScrollViewer> 后台: private void ScrollV
阅读全文
posted @ 2022-03-22 17:30 Yhzwei
阅读(534)
评论(0)
推荐(0)
编辑
2022年3月17日
逻辑运算符与或非
摘要: 与: 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)
编辑
2022年2月22日
调用线程无法访问此对象,因为另一个线程拥有该对象。
摘要: wpf中 赋值给ui控件数据时会报错“调用线程无法访问此对象,因为另一个线程拥有该对象。” 解决办法: this.Dispatcher.Invoke((Action)delegate () { 控件.ItemsSource = 数据; }); 或者 App.Current.Dispatcher.In
阅读全文
posted @ 2022-02-22 18:02 Yhzwei
阅读(2296)
评论(0)
推荐(0)
编辑
2022年2月18日
批处理定时关闭程序
摘要: @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)
编辑
2022年2月15日
sql分组后取最大日期的全部数据
摘要: 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)
编辑
2021年3月15日
OxyPlot的动态曲线图表
摘要: 前台 <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
摘要: 在wpf中实现treeview的功能,可能看到很多分享的都是简单的绑定,仅此记录自己完成的功能。 前台 <TreeView x:Name="chapterTree" Grid.Column="0" SelectedItemChanged="chapterTree_SelectedItemChange
阅读全文
posted @ 2021-03-15 16:27 Yhzwei
阅读(900)
评论(0)
推荐(1)
编辑
公告