-
C#教程之C#分屏控件用法实例
本文实例中的自定义类PictureBox继承于UserControl,最终实现简单的分屏功能。分享给大家供大家参考之用。具体实现代码如下:
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
|
public partial class PictureControl : UserControl { public event MouseEventHandler PicControl_DoubleClick; private int picNum; /// <summary> /// 屏幕个数 /// </summary> public int PicNum { get { return picNum; } set { if (value == 4 || value == 6 || value == 9 || value == 12 || value == 16 || value == 20 || value == 25) //只能 是4、6、9、12、16、20、25 { picNum = value; this .SetPictureBox( this .picNum); } else { this .PicNum = 12; this .SetPictureBox( this .picNum); } } } public PictureControl() { this .picNum = 4; InitializeComponent(); this .SetPictureBox( this .picNum); } /// <summary> /// 根据个数布局PictureBox /// </summary> /// <param name="num"></param> private void SetPictureBox( int num) { this .Controls.Clear(); Size size = this .Size; switch (num) { case 4: this .SetPictureBox(2, 2, size); break ; case 6: this .SetPictureBox(2, 3, size); break ; case 9: this .SetPictureBox(3, 3, size); break ; case 12: this .SetPictureBox(3, 4, size); break ; case 16: this .SetPictureBox(4, 4, size); break ; case 20: this .SetPictureBox(4, 5, size); break ; case 25: this .SetPictureBox(5, 5, size); break ; } } /// <summary> /// 布局pictureBox /// </summary> /// <param name="x">几行</param> /// <param name="y">几列</param> /// <param name="size">当前控件的大小</param> private void SetPictureBox( int x, int y,Size size) { int num = 0; for ( int i = 0; i < x; i++) { for ( int j = 0; j < y; j++) { PictureBox pic = new PictureBox(); pic.SizeMode = PictureBoxSizeMode.Zoom; //设置自动缩放 pic.BackColor = Color.White; //设置背景颜色 pic.Location = new Point((size.Width / y) * j, (size.Height / x) * i); //设置Location pic.BorderStyle = BorderStyle.FixedSingle; //设置边框 pic.MouseDoubleClick += new MouseEventHandler(pic_MouseDoubleClick); //订阅控件双击事件 pic.Size = new Size(size.Width / y, size.Height / x); //设置控件大小 pic.Tag = num; //设定控件编号即屏幕序号 this .Controls.Add(pic); //添加 num++; } } } void pic_MouseDoubleClick( object sender, MouseEventArgs e) { if ( this .PicControl_DoubleClick != null ) { this .PicControl_DoubleClick(sender, e); //将动态添加的控件的双击事件 传向控件体外。 } } private void PictureControl_SizeChanged( object sender, EventArgs e) { this .SetPictureBox( this .picNum); } private PictureBox GetPicByIndex( int index) { foreach (Control c in this .Controls) { if (Convert.ToInt32(c.Tag) == index) { return (PictureBox)c; } } PictureBox p = new PictureBox(); p.Tag = -1; return p; } /// <summary> /// 根据屏幕序号设置图像 /// </summary> /// <param name="index">屏幕号</param> /// <param name="img">图像</param> public void SetImageByIndex( int index, Image img) { GetPicByIndex(index).Image = img; } } |
希望本文所述实例对大家C#程序设计有所帮助。
栏目列表
最新更新
python爬虫及其可视化
使用python爬取豆瓣电影短评评论内容
nodejs爬虫
Python正则表达式完全指南
爬取豆瓣Top250图书数据
shp 地图文件批量添加字段
爬虫小试牛刀(爬取学校通知公告)
【python基础】函数-初识函数
【python基础】函数-返回值
HTTP请求:requests模块基础使用必知必会
SQL SERVER中递归
2个场景实例讲解GaussDB(DWS)基表统计信息估
常用的 SQL Server 关键字及其含义
动手分析SQL Server中的事务中使用的锁
openGauss内核分析:SQL by pass & 经典执行
一招教你如何高效批量导入与更新数据
天天写SQL,这些神奇的特性你知道吗?
openGauss内核分析:执行计划生成
[IM002]Navicat ODBC驱动器管理器 未发现数据
初入Sql Server 之 存储过程的简单使用
uniapp/H5 获取手机桌面壁纸 (静态壁纸)
[前端] DNS解析与优化
为什么在js中需要添加addEventListener()?
JS模块化系统
js通过Object.defineProperty() 定义和控制对象
这是目前我见过最好的跨域解决方案!
减少回流与重绘
减少回流与重绘
如何使用KrpanoToolJS在浏览器切图
performance.now() 与 Date.now() 对比