全部博文(1293)
发布时间:2015-12-11 11:06:38
方法封装:public static System.Windows.Media.ImageBrush GetImageBrushFrom_PResource(System.Drawing.Bitmap imgSrc) { System.Drawing.Bitmap bmp = new S.........【阅读全文】
发布时间:2015-12-08 17:19:14
转自博客: http://blog.csdn.net/liusanchun/article/details/6857558Styel在英文中解释为”样式“,在Web开发中,css为层叠样式表,自从.net3.0推出WPF以来,WPF也有样式一说,通过设置样式,使其WPF控件外观更加美化同时减少了大量的复杂属性的设置。 在WPF中,设置外观样式我们有很多种方式.........【阅读全文】
发布时间:2015-12-03 16:59:54
Debug和Trace都是调试类。 Debug类的方法只有DEBUG版中生效,而Trace的方法可以在DEBUG/RELEASE版本中生效。 一、Debug类 Debug类的控制台输出及断言Assert用法。 public static void TestDebug() { Debug.Listeners.Add(new TextWriterTraceListener(Console.Out)); De.........【阅读全文】
发布时间:2015-12-01 11:30:25
代码片断: Label tmpLabel; string testStr = string.Empty; .........【阅读全文】