
WCF学习心得
文章平均质量分 55
HeavensDoor
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
WCF Image控件的Source属性的使用
WCF中Image.Source属性只支持ImageSource对象,不能把图片对象直接赋给Image.Source。可以采用以下办法,将Bitmap对象转换成ImageSource对象。 Bitmap bitmap ; this.image1.Source = System.Windows.Interop.Imaging.CreateBitmapSourc原创 2012-06-29 13:08:29 · 1391 阅读 · 0 评论 -
WPF -- Winform中弹出WPF窗体不能在文本框中输入的解决方案
这是因为Winform和WPF的输入方式不同,所以要引用WindowsFormsIntergation.dll这个类库,并使用如下代码: Window win = new Window(); System.Windows.Forms.Integration.ElementHost.EnableModelessKeyboardInterop(w原创 2012-07-11 13:46:53 · 2324 阅读 · 0 评论