標籤:c# drawing 圓角表單 按鈕 透明
因為項目需要做個Winform的隨機啟動的資料上傳工具,用Visual Studio的表單感覺太醜了,就想進行最佳化,反正就一個表單,上面也沒啥按鈕,就不要標題列了,就搞一個圓角的表單好了,搞個漂亮的背景圖片。上面搞一個最小化和關閉按鈕。把表單設定為圓角視窗的操作如下:
1、把表單frmMain的FormBorderStyle屬性設定為None,去掉表單的邊框,讓表單成為無邊框的表單。
2、設定表單的Region屬性,該屬性設定表單的有效地區,我們把表單的有效地區設定為圓角矩形,表單就變成圓角的。
3、添加兩個控制項,控制表單的最小化和關閉。
設定為圓角表單,主要涉及GDI+中兩個重要的類 Graphics和GraphicsPath類,分別位於System.Drawing和System.Drawing.Drawing2D。
接著我們需要這樣一個函數 private void SetWindowRegion() 此函數設定表單有效地區為圓角矩形,以及一個輔助函數 private GraphicsPath GetRoundedRectPath(Rectangle rect, int radius)此函數用來建立圓角矩形路徑,將在SetWindowRegion()中調用它。
ublic void SetWindowRegion() { System.Drawing.Drawing2D.GraphicsPath FormPath; FormPath = new System.Drawing.Drawing2D.GraphicsPath(); Rectangle rect = new Rectangle(0, 0, this.Width, this.Height); FormPath = GetRoundedRectPath(rect, 10); this.Region = new Region(FormPath); } private GraphicsPath GetRoundedRectPath(Rectangle rect, int radius) { int diameter = radius; Rectangle arcRect = new Rectangle(rect.Location, new Size(diameter, diameter)); GraphicsPath path = new GraphicsPath(); // 左上方 path.AddArc(arcRect, 180, 90); // 右上方 arcRect.X = rect.Right - diameter; path.AddArc(arcRect, 270, 90); // 右下角 arcRect.Y = rect.Bottom - diameter; path.AddArc(arcRect, 0, 90); // 左下角 arcRect.X = rect.Left; path.AddArc(arcRect, 90, 90); path.CloseFigure();//閉合曲線 return path; }
在表單尺寸改變的時候我們需要調用SetWindowRegion()將表單變成圓角的。
private void frmMain_Resize(object sender, EventArgs e){ SetWindowRegion();}
設定按鈕的形狀:
添加兩個普通的按鈕button,設定按鈕的BackColor屬性為Transparent,讓背景透明,不然按鈕的背景色與表單的圖片背景不相符。設定按鈕的FlatStyle屬性為Flat,同時設定FlatAppearance屬性中的BorderSize=0,MouseDownBackColor和MouseOverBackColor的值均為Transparent,防止點擊按鈕時,顏色變化影響美觀。調整按鈕的大小和位置即可。最小化和關閉按鈕(是右下角托盤,所以沒有退出程式)的代碼如下:
private void btn_min_Click(object sender, EventArgs e){this.WindowState = FormWindowState.Minimized;}private void btn_close_Click(object sender, EventArgs e){this.WindowState = FormWindowState.Minimized;this.Hide();}
還可以添加代碼,控制滑鼠移動到操作按鈕上時,改變按鈕上文字的顏色,來增加體驗。
程式介面如
650) this.width=650;" src="https://s2.51cto.com/wyfs02/M01/8E/D9/wKiom1jMn5ziiYzEAAA07H8OaNo971.jpg-wh_500x0-wm_3-wmp_4-s_3480081089.jpg" title="QQ20170318104609.jpg" alt="wKiom1jMn5ziiYzEAAA07H8OaNo971.jpg-wh_50" />
本文出自 “為何一笑” 部落格,請務必保留此出處http://helicon.blog.51cto.com/3926609/1907838
C# 開發圓角表單