悟生慧

 
上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 27 下一页

2012年2月8日

WinForm里面使用多线程修改主线程上的一个Label的值

摘要: // 先定义一个委托 public delegate void SetTextCallback(string text); // 单击按钮 private void button1_Click(object sender, EventArgs e) { Thread t = new Thread(new ThreadStart(fun1)); t.Start(); } // 线程函数体 private void fun1() { setText("hello"); } // 设置文本函数 private void setText(string text) { if (lab 阅读全文

posted @ 2012-02-08 14:44 悟生慧 阅读(623) 评论(0) 推荐(0) 编辑

2012年1月5日

如何实现控件从IDE拖放到窗体上的效果?

摘要: 在http://www.icsharpcode.net/OpenSource/SD/上看看sharpdevelop,这是一款开源的IDE下载路径:http://sourceforge.net/projects/sharpdevelop/files/SharpDevelop%204.x/4.1/SharpDevelop_4.1.0.8000_Source.zip/download?use_mirror=iweb 阅读全文

posted @ 2012-01-05 13:28 悟生慧 阅读(329) 评论(0) 推荐(0) 编辑

c#windows 应用程序picturebox形状怎样变成圆形

摘要: using System.Drawing.Drawing2D; private void button1_Click(object sender, EventArgs e) { GraphicsPath gp = new GraphicsPath(); gp.AddEllipse(pictureBox1.ClientRectangle); Region region = new Region(gp); pictureBox1.Region = region; pictureBox2.Region=region; pictureBox3.Region=region; gp.Dispose();. 阅读全文

posted @ 2012-01-05 09:23 悟生慧 阅读(7926) 评论(0) 推荐(1) 编辑

2011年12月21日

C#.Net 中枚举类型的数据在PropertyGrid控件中的显示中文描述

摘要: http://www.cnblogs.com/michaellu/articles/1226431.html原文摘要:在程序设计过程中经常会遇到一些数据是以枚举值的形式提供给用户进行选择或查看,通常情况下,枚举数据都是已英文的方式或者便于程序中使用的方式来设置的。在显示枚举类型的数据是又通常是使用ToString()的方式将枚举数据显示出来,在通过PropertyGrid显示给用户时感觉不是很友好,很多用户希望能够以中文的方式显示出来。本文就以实例的方式介绍如何在程序中实现PropertyGrid中友好显示的方式,而又不影响Enum类型的数据在其他地方的使用。一、引文 PropertyGrid 阅读全文

posted @ 2011-12-21 12:21 悟生慧 阅读(3158) 评论(0) 推荐(0) 编辑

2011年12月16日

C#利用KeyValuePair实现Dictionary的遍历方法

摘要: public class Class1 { public string Name; public int Age; public Class1(string name, int age) { this.Name = name; this.Age = age; } } private void button2_Click(object sender, EventArgs e) { Dictionary<string, Class1> cl = new Dictionary<string, Class1>(); Class1 s1 = new Class1("张三 阅读全文

posted @ 2011-12-16 14:53 悟生慧 阅读(8150) 评论(4) 推荐(0) 编辑

2011年12月14日

vs2008 此安装不支持该项目类型

摘要: 下载dotnetfx35setu.exe/Files/chaobaojun/AspNetMVC1.rarp文件。然后下载AspNetMVC1.msi/Files/chaobaojun/dotnetfx35setup1.rar安装下都可以用了!原文转自:http://www.cnblogs.com/chaobaojun/archive/2009/11/27/1612287.html 阅读全文

posted @ 2011-12-14 10:39 悟生慧 阅读(271) 评论(0) 推荐(0) 编辑

2011年12月7日

怎么在DataGridView中动态添加DateTimePicker列?

摘要: using System;using System.Windows.Forms;namespace MasterSoft.WinUI{ ///<summary> /// DataGridView 中的日历列 ///</summary> ///<example > /// DataGridViewCalendarColumn ordBillSubConsignmentDateDataGridViewCalendarColumn = new DataGridViewCalendarColumn(); /// ordBillSubConsignmentDateDa 阅读全文

posted @ 2011-12-07 16:21 悟生慧 阅读(1889) 评论(0) 推荐(0) 编辑

2011年11月29日

Winform 打印报表

摘要: Winform 打印报表(从网上看到的代码,感觉不错,上传以做备忘)winform 打印原理..1.先在画布上面画好表格2.然后传入要打印的数据代码如下:using System;using System.Collections.Generic;using System.Text;using System.Windows.Forms;using System.Drawing.Printing;using System.Drawing;namespace Etaocn.Util{ public class Printer { private DataGridView dataview; pri. 阅读全文

posted @ 2011-11-29 15:39 悟生慧 阅读(4437) 评论(1) 推荐(0) 编辑

合并GridView中某列相同信息的行(单元格)

摘要: /// <summary> /// 合并GridView中某列相同信息的行(单元格) /// </summary> /// <param name="GridView1">GridView</param> /// <param name="cellNum">第几列</param> public static void GroupRows(GridView GridView1, int [] cellNum)//已经改动过了现在是对指定多列后把相同信息合并 { //int []arr 阅读全文

posted @ 2011-11-29 11:00 悟生慧 阅读(372) 评论(0) 推荐(0) 编辑

2011年11月14日

电子表格(SpreadSheet)主要属性、方法和事件 原文:http://blog.csdn.net/zhangting1987/article/details/2065871

摘要: http://ufo-crackerx.blog.163.com/ 全球最大编程控件补丁仓库http://www.spreadsheetgear.com/support/samples/excel.aspx资源网站http://www.cnblogs.com/springSky/archive/2011/07/15/2107108.html博客园关于Devexpress 的xtraReports学习可制作复杂表头Spreadsheet.XMLData 字符串类型的属性,可用来获得或设置XML格式的电子表格内容。Spreadsheet.Range 该方法接受一个区域引用(例如A1:B2或A:B) 阅读全文

posted @ 2011-11-14 15:16 悟生慧 阅读(3096) 评论(0) 推荐(1) 编辑

上一页 1 ··· 6 7 8 9 10 11 12 13 14 ··· 27 下一页

导航