摘要:
由于WPF中,经常有个问题点击Listbox中的里面的元素经常不会选中某项,选中的项也不会变颜色,这个其实可以通过修改样式去实现。 <Style TargetType="{x:Type ListBoxItem}"> <Setter Property="SnapsToDevicePixels" Val 阅读全文
摘要:
var mc = new ManagementClass("Win32_DesktopMonitor"); double height = 0; double width = 0; foreach (var a in mc.GetInstances()) { string path; Trace.W 阅读全文