VB.net 2010 视频教程 VB.net 2010 视频教程 python基础视频教程
SQL Server 2008 视频教程 c#入门经典教程 Visual Basic从门到精通视频教程
当前位置:
首页 > c#编程 >
  • C#教程之winform异型不规则界面设计的实现方法

本文实例讲述了winform异型不规则界面设计的实现方法,用于界面设计时有不错的用户体验,非常实用。分享给大家供大家参考之用。具体方法如下:

一、不规则WINFORM窗体

Author:unknown From:Internet
在以前版本的Visual Basic或Visual C++中,创建不规则窗体和控件是一件很复杂的事,不仅需要调用大量API函数而且工作量也不小。不过,现在在Visual C#下,情况就完全不同了。运用Windows Forms你就可以很轻易地创建出一个不规则的窗体以及窗体上的控件。一个具有不规则窗体和控件的应用程序肯定会更吸引广大的用户,微软的Windows Media Player 7就显示出这一点。作为程序员,您一定想在自己的程序中运用这点技术吧。

程序的窗体和控件都可以以非传统的方式被创建。本文就向大家展示如何在应用程序中创建不规则窗体,以及如何在窗体上创建各式各样的自定义形状的控件。

注:创建不规则窗体和控件这个过程包含了大量的图形编程工作,所以不同的计算机因内存和显卡的不同可能会导致最终的效果有所不同。因此,在发布你的应用程序前,务必在各种不同类型的计算机上做好测试工作。

实现方法:

首先,创建一个位图文件作为程序的窗体。位图可以是任意形状的,但是位图文件区域一定要足够大,这样才能包含窗体上的所有控件。然后,你可以通过设置一些属性使该图成为程序的窗体。

把程序中的标题栏去掉,否则整个界面将显得很不协调。当然你去掉了标题栏也就去掉了它的最大化、最小化、关闭、移动窗体等功能。为了使程序仍然具有这些功能,我们需在程序中添加一些代码,这样用户就仍然可以像以前一样和程序进行交互。

因此,你需要完成如下工作:

1.创建一个作为窗体的位图文件。

2.创建一个Windows应用程序,用上述位图文件作为程序的窗体同时去掉其标题栏。

3.添加原标题栏具有的功能所需的代码。

具体步骤:

下面我就具体向大家介绍如何创建不规则窗体。

创建一个具有不规则形状的位图文件

1.用任何画图程序就可以创建不规则形状的位图,你可以使用最容易也是最方便的画图程序。

2.用一种颜色画出一个不规则的区域作为程序的窗体,并用另一种颜色画出该位图的背景。(你要使该不规则区域足够大。)

3.保存位图文件。

下面就是一个例子:

在vs.net中创建一个新的工程:

首先,设置窗体的背景从而建立窗体形状。

1.在窗体设计器中选中窗体使之获得焦点。

2.在属性对话框中进行如下设置:

●将FormBorderStyle属性设置为None。该属性去掉了程序的标题栏,同时也除去了标题栏的功能,不过我在后面还会向大家介绍如何添加代码以恢复这些功能的。

●将BackgroundImage属性设置为你创建的位图文件。你不必在工程中添加该文件,因为你一旦指定了该文件,它就会自动被添加到工程中。

●将TransparencyKey属性设置为位图文件的背景颜色值(在本例中是蓝色)。该属性使得位图的背景即上图中的蓝色部分不可见,从而窗体就呈现出一个不规则的椭圆形。

3.保存工程。按Ctrl+F5可以运行此程序。(注:因为没有标题栏,所以你可以通过Alt+F4来关闭程序)

将FormBorderStyle属性设置为None后,程序的标题栏就被去掉了。这样,为了获得原来标题栏的功能,我们必须手动添加代码。下面我就向大家介绍如何添加代码实现关闭功能以及移动窗体的功能。

实现窗体的关闭及移动:

1.往窗体上拖放一个按钮控件。

2.在属性对话框中,将该控件的Text属性设置为“关闭”。

3.双击按钮添加一个Click事件处理函数。

4.在代码编辑器中添加如下代码:

?
1
2
3
4
private void button1_Click(object sender, System.EventArgs e)
{
  this.Close();
}

二、不规则按钮Author:unknown From:Internet现在,我们已经创建了一个不规则的窗体,并实现了一些基本的移动窗体、关闭窗体的功能。然而,窗体上的按钮控件还是老一套,那么方方正正,使得整个界面不美观。接下来我就向大家介绍如何创建自定义形状的控件。 前面我们创建不规则窗体的时候用到了TransparencyKey属性,但是控件是没有该属性的,所以我们得找其他的方法来实现控件的不规则形状了。在窗体上画一个自定义形状的控件时,你需要精确的告知窗体在什么位置以及如何画该控件。在.Net Framework中有相应的类和方法来帮你实现这些,所以你不必担心具体实现。 .Net Framework中的类提供给控件一个指示说明,该指示说明能确定控件被画的形状。通过不同的指示说明,你就可以按你想要的方法来画控件了。该指示说明利用了GraphicsPath这个类,这个类代表了一系列用来画图的直线和曲线。首先,你得指定一个GraphicsPath类的对象并告知它你要画什么图形。然后,你将控件的Region属性设置为上述GraphicsPath类的对象。这样,你就可以创建任何自定义形状的控件了。

步骤如下:

● 创建一个GraphicsPath类的实例对象。

● 指定好该对象的各项细节(如大小、形状等等)。

● 将控件的Region属性设置为上面建立的GraphicsPath类的实例对象。 创建一个像文本的按钮控件:

1.拖放一个按钮控件到窗体上。

2.在属性对话框中进行如下设置:

● 将Name属性设置为CustomButton。

● 将BackColor属性设置为一个和窗体背景颜色不同的颜色值。

● 将其Text属性设置为空字符串。

3.添加窗体的Paint事件的事件处理函数。

4.添加以下代码,用GraphicsPath类的实例对象来画控件。

下面的代码以一串字符串的形式画该按钮控件,同时,程序还设置了字符串的字体、大小、风格等属性。字符串被赋给GraphicsPath类的实例对象。然后,该实例对象就被设置为按钮控件的Region属性。这样一个自定义形状的控件就完成了。 

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
private void CustomButton_Paint( object sender, System.Windows.Forms.PaintEventArgs e )
{
  //初始化一个GraphicsPath类的对象
  System.Drawing.Drawing2D.GraphicsPath myGraphicsPath = new System.Drawing.Drawing2D.GraphicsPath();
  //确定一个字符串,该字符串就是控件的形状
  string stringText = "Click Me!";
  //确定字符串的字体
  FontFamily family = new FontFamily("Arial");
  //确定字符串的风格
  int fontStyle = (int)FontStyle.Bold;
  //确定字符串的高度
  int emSize = 35;
  //确定字符串的起始位置,它是从控件开始计算而非窗体
  PointF origin = new PointF(0, 0);
  //一个StringFormat对象来确定字符串的字间距以及对齐方式
  StringFormat format = new StringFormat(StringFormat.GenericDefault);
  //用AddString方法创建字符串
  myGraphicsPath.AddString(stringText, family, fontStyle, emSize, origin, format);
  //将控件的Region属性设置为上面创建的GraphicsPath对象
  CustomButton.Region = new Region(myGraphicsPath);
}

三、GDI+编程的10个基本技巧

?
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
//创建绘图表面有两种常用的方法。下面设法得到PictureBox的绘图表面。 
private void Form1_Load(object sender, System.EventArgs e) 
//得到pictureBox1的绘图表面 
Graphics g = this.pictureBox1.CreateGraphics(); 
private void pictureBox1_Paint(object sender, System.Windows.Forms.PaintEventArgs e) 
//得到pictureBox1的绘图表面 
Graphics g = e.Graphics; 
//可以利用Graphics对象绘制出各种图形图案。控件的Paint事件和OnPaint方法都可以绘图都是好时机。在OnPaint方法里绘制图案一定从参数e里面得到Graphics属性。下面是两个例子。 
protected override void OnPaint(PaintEventArgs e) 
e.Graphics.Clear(Color.White); 
float x, y, w, h; 
x = this.Left+2; 
y = this.Top+2; 
w = this.Width-4; 
h = this.Height-4; 
Pen pen = new Pen(Color.Red, 2); 
e.Graphics.DrawRectangle(pen, x, y, w, h); 
base.OnPaint (e); 
private void PictureBoxII_Resize(object sender, EventArgs e) 
this.Invalidate(); 
private void button1_Click(object sender, System.EventArgs e) 
this.pictureBoxII1.CreateGraphics().FillEllipse( 
Brushes.Blue, 10, 20, 50, 100); 
//和文本有关的三个类: 
//FontFamily——定义有着相似的基本设计但在形式上有某些差异的一组字样。无法继承此类。 
//Font——定义特定的文本格式,包括字体、字号和字形属性。无法继承此类。 
//StringFormat——封装文本布局信息(如对齐方式和行距),显示操作(如省略号插入和国家标准 (National) 数字位替换)和 OpenType 功能。无法继承此类。 
//下面的程序显示了一段文字。 
private void button2_Click(object sender, System.EventArgs e) 
Graphics g = this.pictureBoxII1.CreateGraphics(); 
g.FillRectangle(Brushes.White, this.pictureBoxII1.ClientRectangle); 
string s = "aaaaaaaaaaaaaaaaaaaaaaaaaa"
FontFamily fm = new FontFamily("ËÎÌå"); 
Font f = new Font(fm, 20, FontStyle.Bold, GraphicsUnit.Point); 
RectangleF rectF = new RectangleF(30, 20, 180, 205); 
StringFormat sf = new StringFormat(); 
SolidBrush sbrush = new SolidBrush(Color.FromArgb(255, 0, 0, 255)); 
sf.LineAlignment = StringAlignment.Center; 
sf.FormatFlags = StringFormatFlags.DirectionVertical; 
g.DrawString(s, f, sbrush, rectF, sf); 
//GDI+的路径——GraphicsPath类
 
//GraphicsPath类提供了一系列属性和方法,利用它可以获取路径上的关键点,可以添加直线段、圆等几何元素。可以获得包围矩形,进行拾取测试。这些功能都怎么用,要仔细看一下。 
private void button3_Click(object sender, System.EventArgs e) 
//绘图表面 
Graphics g = this.pictureBoxII1.CreateGraphics(); 
//填充成白色 
g.FillRectangle(Brushes.White, this.ClientRectangle); 
//弄一个绘图路径¶ 
GraphicsPath gp = new GraphicsPath(); 
//添加一些集合图形 
gp.AddEllipse(20, 20, 300, 200); 
gp.AddPie(50, 100, 300, 100, 45, 200); 
gp.AddRectangle(new Rectangle(100, 30, 100, 80)); 
//在绘图表面上绘制绘图路径 
g.DrawPath(Pens.Blue, gp); 
//平移 
g.TranslateTransform(200, 20); 
//填充绘图路径¶ 
g.FillPath(Brushes.GreenYellow, gp); 
gp.Dispose(); 
//区域——Region类 
//从已有的矩形和路径可以创建Region。使用Graphics.FillRegion方法绘制Region。该类指示由矩形和由路径构成的图形形状的内部。无法继承此类。 
//渐变色填充 
//需要使用两个刷子: 
//线性梯度刷子(LinearGradientBrush) 
//路径梯度刷子(PathGuadientBrush) 
private void button4_Click(object sender, System.EventArgs e) 
//绘图表面 
Graphics g = this.pictureBoxII1.CreateGraphics(); 
g.FillRectangle(Brushes.White, this.pictureBoxII1.ClientRectangle); 
//定义一个线性梯度刷子 
LinearGradientBrush lgbrush = 
new LinearGradientBrush( 
new Point(0, 10), 
new Point(150, 10), 
Color.FromArgb(255, 0, 0), 
Color.FromArgb(0, 255, 0)); 
Pen pen = new Pen(lgbrush); 
//用线性笔刷梯度效果的笔绘制一条直线段并填充一个矩形 
g.DrawLine(pen, 10, 130, 500, 130); 
g.FillRectangle(lgbrush, 10, 150, 370, 30); 
//定义路径并添加一个椭圆 
GraphicsPath gp = new GraphicsPath(); 
gp.AddEllipse(10, 10, 200, 100); 
//用该路径定义路径梯度刷子 
PathGradientBrush brush = 
new PathGradientBrush(gp); 
//颜色数组 
Color[] colors = { 
Color.FromArgb(255, 0, 0), 
Color.FromArgb(100, 100, 100), 
Color.FromArgb(0, 255, 0), 
Color.FromArgb(0, 0, 255)}; 
//定义颜色渐变比率 
float[] r = {0.0f, 0.3f, 0.6f, 1.0f}; 
ColorBlend blend = new ColorBlend(); 
blend.Colors = colors; 
blend.Positions = r; 
brush.InterpolationColors = blend; 
//在椭圆外填充一个矩形 
g.FillRectangle(brush, 0, 0, 210, 110); 
//用添加了椭圆的路径定义第二个路径梯度刷子 
GraphicsPath gp2 = new GraphicsPath(); 
gp2.AddEllipse(300, 0, 200, 100); 
PathGradientBrush brush2 = new PathGradientBrush(gp2); 
//设置中心点位置和颜色 
brush2.CenterPoint = new PointF(450, 50); 
brush2.CenterColor = Color.FromArgb(0, 255, 0); 
//设置边界颜色 
Color[] color2 = {Color.FromArgb(255, 0, 0)}; 
brush2.SurroundColors = color2; 
//用第二个梯度刷填充椭圆 
g.FillEllipse(brush2, 300, 0, 200, 100); 
//GDI+的坐标系统
 
//通用坐标系——用户自定义坐标系。 
//页面坐标系——虚拟坐标系。 
//设备坐标系——屏幕坐标系。 
//当页面坐标系和设备坐标系的单位都是象素时,它们相同。 
private void button10_Click(object sender, System.EventArgs e) 
Graphics g = this.pictureBoxII1.CreateGraphics(); 
g.Clear(Color.White); 
this.Draw(g); 
private void Draw(Graphics g) 
g.DrawLine(Pens.Black, 10, 10, 100, 100); 
g.DrawEllipse(Pens.Black, 50, 50, 200, 100); 
g.DrawArc(Pens.Black, 100, 10, 100, 100, 20, 160); 
g.DrawRectangle(Pens.Green, 50, 200, 150, 100); 
private void button5_Click(object sender, System.EventArgs e) 
//左移 
Graphics g = this.pictureBoxII1.CreateGraphics(); 
g.Clear(Color.White); 
g.TranslateTransform(-50, 0); 
this.Draw(g); 
private void button6_Click(object sender, System.EventArgs e) 
//右移 
Graphics g = this.pictureBoxII1.CreateGraphics(); 
g.Clear(Color.White); 
g.TranslateTransform(50, 0); 
this.Draw(g); 
private void button7_Click(object sender, System.EventArgs e) 
//旋转 
Graphics g = this.pictureBoxII1.CreateGraphics(); 
g.Clear(Color.White); 
g.RotateTransform(-30); 
this.Draw(g); 
private void button8_Click(object sender, System.EventArgs e) 
//放大 
Graphics g = this.pictureBoxII1.CreateGraphics(); 
g.Clear(Color.White); 
g.ScaleTransform(1.2f, 1.2f); 
this.Draw(g); 
private void button9_Click(object sender, System.EventArgs e) 
//缩小 
Graphics g = this.pictureBoxII1.CreateGraphics(); 
g.Clear(Color.White); 
g.ScaleTransform(0.8f, 0.8f); 
this.Draw(g); 
//全局坐标——变换对于绘图表面上的每个图元都会产生影响。通常用于设定通用坐标系。 
//一下程序将原定移动到控件中心,并且Y轴正向朝上。 
//先画一个圆 
Graphics g = e.Graphics; 
g.FillRectangle(Brushes.White, this.ClientRectangle); 
g.DrawEllipse(Pens.Black, -100, -100, 200, 200); 
//使y轴正向朝上,必须做相对于x轴镜像 
//变换矩阵为[1,0,0,-1,0,0] 
Matrix mat = new Matrix(1, 0, 0, -1, 0, 0); 
g.Transform = mat; 
Rectangle rect = this.ClientRectangle; 
int w = rect.Width; 
int h = rect.Height; 
g.TranslateTransform(w/2, -h/2); 
//以原点为中心,做一个半径为100的圆 
g.DrawEllipse(Pens.Red, -100, -100, 200, 200); 
g.TranslateTransform(100, 100); 
g.DrawEllipse(Pens.Green, -100, -100, 200, 200); 
g.ScaleTransform(2, 2); 
g.DrawEllipse(Pens.Blue, -100, -100, 200, 200); 
//局部坐标系——只对某些图形进行变换,而其它图形元素不变。 
protected override void OnPaint(PaintEventArgs e) 
Graphics g = e.Graphics; 
//客户区设置为白色 
g.FillRectangle(Brushes.White, this.ClientRectangle); 
//y轴朝上 
Matrix mat = new Matrix(1, 0, 0, -1, 0, 0); 
g.Transform = mat; 
//移动坐标原点到窗体中心 
Rectangle rect = this.ClientRectangle; 
int w = rect.Width; 
int h = rect.Height; 
g.TranslateTransform(w/2, -h/2); 
 
//在全局坐标下绘制椭圆 
g.DrawEllipse(Pens.Red, -100, -100, 200, 200); 
g.FillRectangle(Brushes.Black, -108, 0, 8, 8); 
g.FillRectangle(Brushes.Black, 100, 0, 8, 8); 
g.FillRectangle(Brushes.Black, 0, 100, 8, 8); 
g.FillRectangle(Brushes.Black, 0, -108, 8, 8); 
//创建一个椭圆然后在局部坐标系中进行变换 
GraphicsPath gp = new GraphicsPath(); 
gp.AddEllipse(-100, -100, 200, 200); 
Matrix mat2 = new Matrix(); 
//平移 
mat2.Translate(150, 150); 
//旋转 
mat2.Rotate(30); 
gp.Transform(mat2); 
g.DrawPath(Pens.Blue, gp); 
PointF[] p = gp.PathPoints; 
g.FillRectangle(Brushes.Black, p[0].X-2, p[0].Y+2, 4, 4); 
g.FillRectangle(Brushes.Black, p[3].X-2, p[3].Y+2, 4, 4); 
g.FillRectangle(Brushes.Black, p[6].X-4, p[6].Y-4, 4, 4); 
g.FillRectangle(Brushes.Black, p[9].X-4, p[9].Y-4, 4, 4); 
gp.Dispose(); 
//base.OnPaint (e); 
//Alpha混合
 
//Color.FromArgb()的A就是Alpha。Alpha的取值范围从0到255。0表示完全透明,255完全不透明。 
//当前色=前景色×alpha/255+背景色×(255-alpha)/255 
protected override void OnPaint(PaintEventArgs e) 
Graphics g = e.Graphics; 
//创建一个填充矩形 
SolidBrush brush = new SolidBrush(Color.BlueViolet); 
g.FillRectangle(brush, 180, 70, 200, 150); 
//创建一个位图,其中两个位图之间有透明效果 
Bitmap bm1 = new Bitmap(200, 100); 
Graphics bg1 = Graphics.FromImage(bm1); 
SolidBrush redBrush = 
new SolidBrush(Color.FromArgb(210, 255, 0, 0)); 
SolidBrush greenBrush = 
new SolidBrush(Color.FromArgb(210, 0, 255, 0)); 
bg1.FillRectangle(redBrush, 0, 0, 150, 70); 
bg1.FillRectangle(greenBrush, 30, 30, 150, 70); 
g.DrawImage(bm1, 100, 100); 
//创建一个位图,其中两个位图之间没有透明效果 
Bitmap bm2 = new Bitmap(200, 100); 
Graphics bg2 = Graphics.FromImage(bm2); 
bg2.CompositingMode = CompositingMode.SourceCopy; 
bg2.FillRectangle(redBrush, 0, 0, 150, 170); 
bg2.FillRectangle(greenBrush, 30, 30, 150, 70); 
g.CompositingQuality = CompositingQuality.GammaCorrected; 
g.DrawImage(bm2, 300, 200); 
//base.OnPaint (e); 
//反走样 
protected override void OnPaint(PaintEventArgs e) 
Graphics g = e.Graphics; 
//放大8倍 
g.ScaleTransform(8, 8); 
//没有反走样的图形和文字 
Draw(g); 
//设置反走样 
g.SmoothingMode = SmoothingMode.AntiAlias; 
//右移40 
g.TranslateTransform(40, 0); 
//再绘制就是反走样之后的了 
Draw(g); 
//base.OnPaint (e); 
private void Draw(Graphics g) 
//绘制图形和文字 
g.DrawLine(Pens.Gray, 10, 10, 40, 20); 
g.DrawEllipse(Pens.Gray, 20, 20, 30, 10); 
string s = "反走样测试"
Font font = new Font("宋体", 5); 
SolidBrush brush = new SolidBrush(Color.Gray); 
g.DrawString(s, font, brush, 10, 40); 
}

相信本文所述对大家的C#程序设计有一定的借鉴价值。


相关教程