.NET Windows编程系列课程学习笔记(3):VisualStudio2005常用控件(上)

上一篇 / 下一篇  2009-04-27 21:00:06 / 个人分类:.NET

1. 用户界面

2. Windows窗体控件

Container控件:TableLayoutPanel

Paint事件:改变窗体显示形状

        private void Form1_Paint(object sender, PaintEventArgs e)
        {

            System.Drawing.Drawing2D.GraphicsPath shape = new System.Drawing.Drawing2D.GraphicsPath();
            shape.AddEllipse(0, 0, this.Width, this.Height);
            this.Region = new System.Drawing.Region(shape);

        }

3. 常用控件:

MaskedTextBox控件

Scroll控件

ListView控件

TreeView控件

BackgroudWorker组件


TAG:

 

评分:0

我来说两句

日历

« 2024-04-26  
 123456
78910111213
14151617181920
21222324252627
282930    

数据统计

  • 访问量: 13882
  • 日志数: 28
  • 书签数: 1
  • 建立时间: 2009-04-02
  • 更新时间: 2010-06-09

RSS订阅

Open Toolbar