悟生慧

 

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) 编辑

导航