c# 自定义控件使其填充方格且自动变换大小
生活随笔
收集整理的這篇文章主要介紹了
c# 自定义控件使其填充方格且自动变换大小
小編覺得挺不錯的,現在分享給大家,幫大家做個參考.
1 using System;
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Drawing;
5 using System.Data;
6 using System.Linq;
7 using System.Text;
8 using System.Windows.Forms;
9
10 namespace 方格練習
11 {
12 public partial class FillBtn : UserControl
13 {
14 public FillBtn()
15 {
16 InitializeComponent();
17 }
18 /// <summary>
19 /// 填充按鈕
20 /// </summary>
21 /// <param name="btnNum">按鈕數量</param>
22 public void FillButton(int btnNum)
23 {
24 //填充btnNum*btnNum個方格,現在放置的是羅列著的
25 for (int i = 0; i < btnNum * btnNum; i++)
26 {
27 Button btn = new Button();
28 this.Controls.Add(btn);
29 }
30 //定義方法,因為需要改變大小,所以單獨
31 this.LayoutBtns();
32 }
33 /// <summary>
34 /// 布局按鈕
35 /// </summary>
36 /// <returns></returns>
37 private void LayoutBtns()
38 {
39 //去除啟動狀態,以免開啟的時候FillBtn_SizeChanged會報錯
40 if (this.Controls.Count==0)
41 {
42 return;
43 }
44 //循環多少次?計算出來
45 int btnLineNum = (int)Math.Sqrt(this.Controls.Count);
46 //計算按鈕的寬度
47 int btnWidth = this.Width / btnLineNum;
48 int btnHeight = this.Height / btnLineNum;
49
50 int btnIndex = 0;
51 int btnX = 0, btnY = 0;
52 //豎向的循環嵌套橫著的循環
53 for (int verticalIndex = 0; verticalIndex < btnLineNum; verticalIndex++)
54 {
55 btnY = verticalIndex * btnHeight;
56 //水平向的循環
57 for (int horizontalIndex = 0; horizontalIndex < btnLineNum; horizontalIndex++)
58 {
59 btnX = horizontalIndex * btnWidth;
60 //獲取要放置的方格
61 Button btn = this.Controls[btnIndex] as Button;
62 //設置當前方格的大小
63 btn.Size = new Size(btnWidth, btnHeight);
64 //設置當前方格的位置
65 btn.Location = new Point(btnX, btnY);
66 //下一個方格
67 btnIndex++;
68 }
69 }
70 }
71
72 private void FillBtn_SizeChanged(object sender, EventArgs e)
73 {
74 //設置當控件大小改變時的事件
75 this.LayoutBtns();
76 }
77 }
78 }
2 using System.Collections.Generic;
3 using System.ComponentModel;
4 using System.Drawing;
5 using System.Data;
6 using System.Linq;
7 using System.Text;
8 using System.Windows.Forms;
9
10 namespace 方格練習
11 {
12 public partial class FillBtn : UserControl
13 {
14 public FillBtn()
15 {
16 InitializeComponent();
17 }
18 /// <summary>
19 /// 填充按鈕
20 /// </summary>
21 /// <param name="btnNum">按鈕數量</param>
22 public void FillButton(int btnNum)
23 {
24 //填充btnNum*btnNum個方格,現在放置的是羅列著的
25 for (int i = 0; i < btnNum * btnNum; i++)
26 {
27 Button btn = new Button();
28 this.Controls.Add(btn);
29 }
30 //定義方法,因為需要改變大小,所以單獨
31 this.LayoutBtns();
32 }
33 /// <summary>
34 /// 布局按鈕
35 /// </summary>
36 /// <returns></returns>
37 private void LayoutBtns()
38 {
39 //去除啟動狀態,以免開啟的時候FillBtn_SizeChanged會報錯
40 if (this.Controls.Count==0)
41 {
42 return;
43 }
44 //循環多少次?計算出來
45 int btnLineNum = (int)Math.Sqrt(this.Controls.Count);
46 //計算按鈕的寬度
47 int btnWidth = this.Width / btnLineNum;
48 int btnHeight = this.Height / btnLineNum;
49
50 int btnIndex = 0;
51 int btnX = 0, btnY = 0;
52 //豎向的循環嵌套橫著的循環
53 for (int verticalIndex = 0; verticalIndex < btnLineNum; verticalIndex++)
54 {
55 btnY = verticalIndex * btnHeight;
56 //水平向的循環
57 for (int horizontalIndex = 0; horizontalIndex < btnLineNum; horizontalIndex++)
58 {
59 btnX = horizontalIndex * btnWidth;
60 //獲取要放置的方格
61 Button btn = this.Controls[btnIndex] as Button;
62 //設置當前方格的大小
63 btn.Size = new Size(btnWidth, btnHeight);
64 //設置當前方格的位置
65 btn.Location = new Point(btnX, btnY);
66 //下一個方格
67 btnIndex++;
68 }
69 }
70 }
71
72 private void FillBtn_SizeChanged(object sender, EventArgs e)
73 {
74 //設置當控件大小改變時的事件
75 this.LayoutBtns();
76 }
77 }
78 }
轉載于:https://www.cnblogs.com/dyee/archive/2011/12/30/2307270.html
《新程序員》:云原生和全面數字化實踐50位技術專家共同創作,文字、視頻、音頻交互閱讀總結
以上是生活随笔為你收集整理的c# 自定义控件使其填充方格且自动变换大小的全部內容,希望文章能夠幫你解決所遇到的問題。
- 上一篇: 脊髓损伤后疾病康复教育内容
- 下一篇: SCCM2012之客户端发现与安装