博客园  :: 首页  :: 新随笔  :: 联系 :: 订阅 订阅  :: 管理
上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 30 下一页

2011年7月17日

摘要: 把多个radioButton 放在同一个容器中using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace RadioButtonDemo{ public partial class Form1 : Form { private Color curColor; public Form1() { InitializeCompo 阅读全文

posted @ 2011-07-17 17:57 itcfj 阅读(213) 评论(0) 推荐(0) 编辑

摘要: 方法一:把Form1 的属性设为位图:BackPic.bmp,using System;using System.Collections.Generic;using System.ComponentModel;using System.Data;using System.Drawing;using System.Text;using System.Windows.Forms;namespace IrregularForm{ public partial class Form1 : Form { private Point mouseOffset; private bool isMouseDow 阅读全文

posted @ 2011-07-17 17:38 itcfj 阅读(218) 评论(0) 推荐(0) 编辑

2011年7月12日

摘要: http://www.cnblogs.com/joseph/articles/1636434.html 阅读全文

posted @ 2011-07-12 10:19 itcfj 阅读(181) 评论(0) 推荐(0) 编辑

摘要: 本页内容概述组件介绍应用示例实现原理结束语概述在应用程序中,可能会遇到一些执行耗时的功能操作,比如数据下载、复杂计算及数据库事务等,一般这样的功能会在单独的线程上实现,执行结束后结果显示到用户界面上,这样可避免造成用户界面长时间无响应情况。在.NET 2.0及以后的版本中,FCL提供了BackgroundWorker组件来方便的实现这些功能要求。组件介绍BackgroundWorker类位于System.ComponentModel 命名空间中,通过该类在单独的线程上执行操作实现基于事件的异步模式。下面对BackgroundWorker类的主要成员进行介绍。BackgroundWorker类的 阅读全文

posted @ 2011-07-12 09:56 itcfj 阅读(261) 评论(0) 推荐(0) 编辑

2011年7月11日

摘要: http://www.codeproject.com/KB/cs/Hierarchical_Tree.aspx 阅读全文

posted @ 2011-07-11 17:41 itcfj 阅读(219) 评论(0) 推荐(0) 编辑

摘要: http://www.cnblogs.com/lzhdim/archive/2009/09/13/1565866.html 阅读全文

posted @ 2011-07-11 17:02 itcfj 阅读(140) 评论(0) 推荐(0) 编辑

2011年6月28日

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Linq;using System.Text;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;namespace ServerControl1{ [DefaultProperty("Text")] [ToolboxData("<{0}:ServerControl1 runat=server>& 阅读全文

posted @ 2011-06-28 20:31 itcfj 阅读(182) 评论(0) 推荐(0) 编辑

摘要: 设计类:using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Web.UI;using System.Web.UI.WebControls;using System.IO;namespace ServerControl2{ public class Des:System.Web.UI.Design.ControlDesigner { public override string GetDesignTimeHtml() { StringWriter sw = n 阅读全文

posted @ 2011-06-28 20:03 itcfj 阅读(535) 评论(0) 推荐(0) 编辑

摘要: using System;using System.Collections.Generic;using System.ComponentModel;using System.Linq;using System.Text;using System.Web;using System.Web.UI;using System.Web.UI.WebControls;using System.Drawing;namespace Mytext{ [DefaultProperty("Text")] [ToolboxData("<{0}:ServerControl1 runa 阅读全文

posted @ 2011-06-28 19:57 itcfj 阅读(261) 评论(0) 推荐(0) 编辑

2011年6月22日

摘要: Asp.net 部分:<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="MyFiles_List.aspx.cs" Inherits="lbWeb.webAdmin.MyFiles_List" %><!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-t 阅读全文

posted @ 2011-06-22 09:31 itcfj 阅读(1175) 评论(0) 推荐(0) 编辑

上一页 1 ··· 7 8 9 10 11 12 13 14 15 ··· 30 下一页