随笔分类 - WPF
摘要:using System; using System.Collections.Concurrent; using System.Collections.Generic; using System.Collections.Specialized; using System.Linq; using Sy
阅读全文
摘要:Microsoft.Win32.OpenFileDialog fd = new Microsoft.Win32.OpenFileDialog(); fd.Multiselect = true; fd.Title = "选择输出目录"; if (fd.ShowDialog() == true) { }
阅读全文
摘要:wpf如果使用了DropShadowEffect,会导致文字模糊,可以在window上设置 this.UseLayoutRounding = true;解决此问题
阅读全文
摘要:写的一个WPF程序,在win10运行好好的,在win7就报'Initialization of 'System.Windows.Setter' threw an exception.' 原来是xaml使用了xmlns:Themes="clr-namespace:Microsoft.Windows.T
阅读全文
摘要:当全局大小计算公式改变,可以这样通知绑定者去刷新
阅读全文