06 2015 档案
摘要:private BitmapSource ToGray(BitmapSource source) { FormatConvertedBitmap re = new FormatConvertedBitmap(); re.BeginInit(); re.Source = source; re.DestinationFormat = PixelFormats.Gray8; r...
阅读全文
摘要:class TextListBoxVMpublic : ViewModelBase { public TextListBoxVMpublic() { var list = this.GetEmployees(); this.filteredEmploees = new...
阅读全文
摘要:public partial class Example : UserControl { private ScrollViewer myScrollViewer; public Example() { InitializeComponent(); } private void Scr...
阅读全文
摘要:结合ItemsControl在Canvas中动态添加控件的最MVVM的方式
阅读全文
摘要:。。没哈好说的,,只是推荐一个软件ArtCursor。。非常好用。关于另外一个更改光标的重要问题:鼠标的hotspot,也就是鼠标的作用点问题,本人关于这个问题纠结了很久,始终无法找到更改HCURSOR作用点的函数。后来终于在网上发现,其实在制作.cur格式的图片时就可以设置hotspot(热点)。...
阅读全文