上一页 1 2 3 4 5 6 7 ··· 19 下一页
摘要: 一、关闭窗体 在c#中退出WinForm程序包括有很多方法,如:this.Close(); Application.Exit();Application.ExitThread(); System.Environment.Exit(0); 等他们各自的方法不一样,下面详细介绍一下。 1.this.Cl 阅读全文
posted @ 2017-05-16 15:39 程序员徐坤 阅读(418) 评论(0) 推荐(0) 编辑
摘要: using FtpLib; using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Diagnostics; using System.IO; using System.Linq; using System.ServiceProce... 阅读全文
posted @ 2017-05-15 16:43 程序员徐坤 阅读(1520) 评论(1) 推荐(0) 编辑
摘要: 以前我都是通过定义一个delegate来写委托的,但是最近看一些外国人写的源码都是用action和func方式来写,当时感觉对这很陌生所以看起源码也觉得陌生,所以我就花费时间来学习下这两种方式,然后发现确实代码简洁了不少。这两种方式我们也可以去实践的过程去慢慢运用。 先说一下委托: 模拟一下场景:小明最近学习情绪高涨,以前买的书已经满足不了欲望,打算去买本(一个程序员的自我修养)。可是呢... 阅读全文
posted @ 2017-05-12 10:55 程序员徐坤 阅读(16255) 评论(2) 推荐(4) 编辑
摘要: (以下是我学习FullCalendar控件时,网络上收集的一些资料) jQuery.fullCalendar官方网址: http://arshaw.com/fullcalendar/ http://arshaw.com/fullcalendar/docs/ http://arshaw.com/ful 阅读全文
posted @ 2017-04-20 16:16 程序员徐坤 阅读(3196) 评论(1) 推荐(0) 编辑
摘要: /// /// 应用程序的主入口点。 /// public static ApplicationContext context; [STAThread] private static void Main() { try { ... 阅读全文
posted @ 2017-04-05 14:46 程序员徐坤 阅读(901) 评论(0) 推荐(0) 编辑
摘要: 前段时间,公司同事开发了一个小工具,在工具执行过程中, UI 界面一直处于卡死状态。 通过阅读代码发现,主要是由于 Dispatcher.BeginInvoke()方法使用不当导致的。 本文将通过一个WPF模拟程序来演示一下界面卡死的现象,并通过修改代码来解决界面卡死的问题。 希望通过对本文的学习, 阅读全文
posted @ 2017-03-03 14:28 程序员徐坤 阅读(924) 评论(0) 推荐(0) 编辑
摘要: 修改Web.config,增加requestValidationMode="2.0"属性值 阅读全文
posted @ 2016-09-19 15:07 程序员徐坤 阅读(133) 评论(0) 推荐(0) 编辑
摘要: 对config配置文件的读写类 测试代码如下: 阅读全文
posted @ 2016-09-19 11:11 程序员徐坤 阅读(3093) 评论(0) 推荐(0) 编辑
摘要: public class ConfigOperator { #region 从配置文件获取Value /// /// 从配置文件获取Value /// /// 配置文件中key字符串 /// public static string GetValueFromConfi... 阅读全文
posted @ 2016-09-19 11:09 程序员徐坤 阅读(1725) 评论(0) 推荐(0) 编辑
摘要: 站点IP访问频率限制 针对单个站点 阅读全文
posted @ 2016-09-06 14:28 程序员徐坤 阅读(2167) 评论(1) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 ··· 19 下一页