博客园 首页 私信博主 显示目录 隐藏目录 管理 动画

04 2016 档案

摘要:1 using System; 2 using System.Collections.Generic; 3 using System.Linq; 4 using System.Text; 5 using System.Threading.Tasks; 6 7 namespace wpfDistinc 阅读全文
posted @ 2016-04-27 22:01 ants_double 阅读(488) 评论(0) 推荐(0)
摘要:ASP.NET应用程序的配置信息都存放于Web.config配置文件中,Web.config配置文件是基于XML格式的文件类型,由于XML文件的可伸缩性,使得ASP.NET应用配置变得灵活、高效、容易实现。同时,ASP.NET不允许外部用户直接通过URL请求访问Web.config,以提高应用程序的 阅读全文
posted @ 2016-04-19 13:09 ants_double 阅读(254) 评论(0) 推荐(0)
摘要:1 #region 窗口操作事件 2 //拖动窗体 3 private void Border_MouseLeftButtonDown(object sender, MouseButtonEventArgs e) 4 { 5 if (e.LeftButton == MouseButtonState.Presse... 阅读全文
posted @ 2016-04-08 14:37 ants_double 阅读(143) 评论(0) 推荐(0)
摘要:1 2 3 4 5 6 7 Left side 8 9 Right side 10 阅读全文
posted @ 2016-04-08 08:08 ants_double 阅读(169) 评论(0) 推荐(0)
摘要:1 2 TextRenderingMode.Auto, small text 3 TextRenderingMode.Aliased, small text 4 TextRenderingMode.ClearType, small text 5 TextRenderingMode.... 阅读全文
posted @ 2016-04-08 08:07 ants_double 阅读(230) 评论(0) 推荐(0)
摘要:1 2 Text: 3 4 Password: 5 6 阅读全文
posted @ 2016-04-08 08:06 ants_double 阅读(217) 评论(0) 推荐(0)
摘要:1 /// 2 /// behind add textbox 3 /// 4 private void AddTextToTextBox() 5 { 6 TextBlock tb = new TextBlock(); 7 tb.TextWrapping... 阅读全文
posted @ 2016-04-08 08:05 ants_double 阅读(119) 评论(0) 推荐(0)
摘要:前: 后: 阅读全文
posted @ 2016-04-08 08:02 ants_double 阅读(203) 评论(0) 推荐(0)
摘要:前: 阅读全文
posted @ 2016-04-08 08:01 ants_double 阅读(281) 评论(0) 推荐(0)
摘要:前台: 阅读全文
posted @ 2016-04-08 08:00 ants_double 阅读(457) 评论(0) 推荐(0)
摘要:前台: 后台: 阅读全文
posted @ 2016-04-08 07:56 ants_double 阅读(262) 评论(0) 推荐(0)
摘要:1 2 3 24 25 26 阅读全文
posted @ 2016-04-08 07:53 ants_double 阅读(135) 评论(0) 推荐(0)
摘要:前台: 后台: 阅读全文
posted @ 2016-04-08 07:52 ants_double 阅读(150) 评论(0) 推荐(0)
摘要:前台: 后台: 阅读全文
posted @ 2016-04-08 07:50 ants_double 阅读(761) 评论(0) 推荐(0)
摘要:最一般的用法 阅读全文
posted @ 2016-04-07 19:35 ants_double 阅读(214) 评论(0) 推荐(0)
摘要:自定义的一个表头 阅读全文
posted @ 2016-04-07 19:31 ants_double 阅读(406) 评论(0) 推荐(0)
摘要:打开对话框保存为txt 阅读全文
posted @ 2016-04-07 19:29 ants_double 阅读(244) 评论(0) 推荐(0)
摘要:方面进行转换绑定 阅读全文
posted @ 2016-04-07 19:26 ants_double 阅读(183) 评论(0) 推荐(0)
摘要:更好的对一个对象进行复制 阅读全文
posted @ 2016-04-07 19:24 ants_double 阅读(186) 评论(0) 推荐(0)
摘要:下面是dictionary的扩展 阅读全文
posted @ 2016-04-07 19:23 ants_double 阅读(260) 评论(0) 推荐(0)
摘要: 阅读全文
posted @ 2016-04-06 15:40 ants_double 阅读(192) 评论(0) 推荐(0)
摘要:前台: 后台: 应用: 阅读全文
posted @ 2016-04-06 15:34 ants_double 阅读(270) 评论(0) 推荐(0)
摘要:如下: 阅读全文
posted @ 2016-04-06 15:27 ants_double 阅读(293) 评论(0) 推荐(0)
摘要:1 //创建一个任务 2 Task task = new Task(() => 3 { 4 int sum = 0; 5 //显示进度条遮照层, 6 this.ShowPrograssBar(); 7 ... 阅读全文
posted @ 2016-04-06 15:24 ants_double 阅读(523) 评论(0) 推荐(0)
摘要:1 this.chart2.Dispatcher.BeginInvoke(new Action(() => 2 { 3 this.chart2.SetData("Series1", lxs, lys, lzs); 4 })); 阅读全文
posted @ 2016-04-06 15:21 ants_double 阅读(226) 评论(0) 推荐(0)
摘要:代码如下: 阅读全文
posted @ 2016-04-06 15:19 ants_double 阅读(139) 评论(0) 推荐(0)