最新国产好看的视频,伊人天堂AV在线,国产Aaaaaa视频,蜜臀视频在线观看一区,人妻av色图,密臀久久久精品影片,青青视频免费观看毛片,久草在线观看视,国产三级精品色情在线

WinForm繪制圓角的方法

 更新時(shí)間:2015年08月21日 10:02:55   作者:我心依舊  
這篇文章主要介紹了WinForm繪制圓角的方法,涉及C#中GraphicsPath模塊的使用技巧,具有一定參考借鑒價(jià)值,需要的朋友可以參考下

本文實(shí)例講述了WinForm繪制圓角的方法。分享給大家供大家參考。具體實(shí)現(xiàn)方法如下:

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
using System.Runtime.InteropServices;
using System.Drawing.Drawing2D;
namespace AppStartSample
{
 public partial class Form3 : Form
 {
  public Form3()
  {
   InitializeComponent();
  }
  private void button1_Click(object sender, EventArgs e)
  {
  }
  private void button2_Click(object sender, EventArgs e)
  {
  }
  public void SetWindowRegion()
  {
   System.Drawing.Drawing2D.GraphicsPath FormPath;
   FormPath = new System.Drawing.Drawing2D.GraphicsPath();
   Rectangle rect = new Rectangle(0, 22, this.Width, this.Height - 22);//
   FormPath = GetRoundedRectPath(rect, 30);
   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 - 0;
   path.AddArc(arcRect, 0, 90);
   // 左下角  
   arcRect.X = rect.Left;
   path.AddArc(arcRect, 90, 90);
   path.CloseFigure();
   return path;
  }
  protected override void OnResize(System.EventArgs e)
  {
   this.Region = null;
   SetWindowRegion();
  }
 }
}

希望本文所述對(duì)大家的C#程序設(shè)計(jì)有所幫助。

相關(guān)文章

最新評(píng)論

高密市| 南和县| 司法| 邓州市| 桂林市| 石狮市| 潜江市| 濮阳县| 个旧市| 南宁市| 益阳市| 南京市| 汉沽区| 淮南市| 上栗县| 新乡县| 波密县| 清涧县| 怀化市| 渑池县| 唐海县| 唐河县| 隆化县| 论坛| 东光县| 德庆县| 尚义县| 恩施市| 红桥区| 金乡县| 和政县| 海安县| 陈巴尔虎旗| 屏山县| 原平市| 马鞍山市| 浦江县| 万盛区| 江孜县| 宣化县| 高邮市|