真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

利用C#怎么實現(xiàn)一個顏色漸變窗體控件-創(chuàng)新互聯(lián)

本篇文章為大家展示了利用C#怎么實現(xiàn)一個顏色漸變窗體控件,內(nèi)容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。

目前累計服務(wù)客戶上千家,積累了豐富的產(chǎn)品開發(fā)及服務(wù)經(jīng)驗。以網(wǎng)站設(shè)計水平和技術(shù)實力,樹立企業(yè)形象,為客戶提供成都網(wǎng)站建設(shè)、成都網(wǎng)站設(shè)計、網(wǎng)站策劃、網(wǎng)頁設(shè)計、網(wǎng)絡(luò)營銷、VI設(shè)計、網(wǎng)站改版、漏洞修補等服務(wù)。成都創(chuàng)新互聯(lián)始終以務(wù)實、誠信為根本,不斷創(chuàng)新和提高建站品質(zhì),通過對領(lǐng)先技術(shù)的掌握、對創(chuàng)意設(shè)計的研究、對客戶形象的視覺傳遞、對應(yīng)用系統(tǒng)的結(jié)合,為客戶提供更好的一站式互聯(lián)網(wǎng)解決方案,攜手廣大客戶,共同發(fā)展進步。

1.建議設(shè)置窗體為雙緩沖繪圖,可有效避免界面刷時引起的閃爍

this.SetStyle(ControlStyles.AllPaintingInWmPaint | ControlStyles.OptimizedDoubleBuffer, true);

2、代碼實現(xiàn)

 private Color Color1 = Color.Gray; //起始顏色
 private Color Color2 = Color.White ; //目標(biāo)顏色
 private float changeAngle = 0f;    //漸變角度

3.窗體繪制函數(shù)

 private void Form1_Paint(object sender, PaintEventArgs e)
 {
      Graphics g = e.Graphics;
      Rectangle grounRect = new Rectangle(0, 0, this.Width, this.Height);
      System.Drawing.Drawing2D.LinearGradientBrush backGround = new System.Drawing.Drawing2D.LinearGradientBrush(grounRect, Color1, Color2, changeAngle);
      g.FillRectangle(backGround, grounRect);
      backGround.Dispose();
}

補充:WPS中 LinearGradientBrush線性漸變的使用

1、顏色列排列

注:

(1)列排列的起始坐標(biāo)為(0,0.5)終止坐標(biāo)為(1,0.5)

(2)其中offset放置的位置參數(shù)是需要計算的

例如:一共四個顏色,那么就是1/4=0.25;表示一個顏色0.25,第一個顏色為0.25,第二個就是再加上0.25=0.5,第三個就是0.75,第四個就是1

public MainWindow()
    {
      InitializeComponent();
  //實例化一個Border控件,來設(shè)置這個背景線性漸變
      Border bord1 = new Border();
      bord1.Width = bord1.Height=200;
      indext.Children.Add(bord1);
  //線性漸變設(shè)置開始
      LinearGradientBrush brush = new LinearGradientBrush();//實例化線性漸變對象
  //列排列的起始坐標(biāo)為(0,0.5)終止坐標(biāo)為(1,0.5)
      brush.StartPoint = new Point(0, 0.5);//設(shè)置線性漸變的二維起始坐標(biāo)
      brush.EndPoint=new Point(1,0.5);//設(shè)置線性漸變的二維終止坐標(biāo)
      brush.GradientStops.Add(new GradientStop(color: Colors.Pink,offset:0.25));
  //GradientStops表示設(shè)置漸變的終止點
  //GradientStop第一個參數(shù)color是設(shè)置顏色,第二個參數(shù)offset是設(shè)置的位置
      brush.GradientStops.Add(new GradientStop(color: Colors.IndianRed,offset:0.50));
      brush.GradientStops.Add(new GradientStop(color: Colors.LightSteelBlue,offset:0.75));
      brush.GradientStops.Add(new GradientStop(color: Colors.LightSeaGreen,offset:1.0));
      bord1.Background = brush;
  //最后將設(shè)置好的漸變背景賦值給Border控件
    }

2、顏色行排列

注:

行排列的時候,起始位置和終止位置只是改變了位置

列排列的起始坐標(biāo)為(0.5,0)終止坐標(biāo)為(0.5,1)

public MainWindow()
    {
      InitializeComponent();
      Border bord1 = new Border();
      bord1.Width = bord1.Height=200;
      indext.Children.Add(bord1);
      LinearGradientBrush brush = new LinearGradientBrush();
   //顏色行排列位置改變
      brush.StartPoint = new Point(0.5,0);
      brush.EndPoint=new Point(0.5,1);
      brush.GradientStops.Add(new GradientStop(color: Colors.Pink,offset:0.25));
      brush.GradientStops.Add(new GradientStop(color: Colors.IndianRed,offset:0.50));
      brush.GradientStops.Add(new GradientStop(color: Colors.LightSteelBlue,offset:0.75));
      brush.GradientStops.Add(new GradientStop(color: Colors.LightSeaGreen,offset:1.0));
      bord1.Background = brush;
    }

3、左上角到右下角斜著排列

注:

如果說要斜著排列,那么它的起始位置和終止位置不用設(shè)置計算,默認排列,只需要計算offset的位置大小

 public MainWindow()
    {
      InitializeComponent();
      Border bord1 = new Border();
      bord1.Width = bord1.Height=200;
      indext.Children.Add(bord1);
      LinearGradientBrush brush = new LinearGradientBrush();
      brush.GradientStops.Add(new GradientStop(color: Colors.Pink,offset:0.25));
      brush.GradientStops.Add(new GradientStop(color: Colors.IndianRed,offset:0.50));
      brush.GradientStops.Add(new GradientStop(color: Colors.LightSteelBlue,offset:0.75));
      brush.GradientStops.Add(new GradientStop(color: Colors.LightSeaGreen,offset:1.0));
      bord1.Background = brush;
    }

上述內(nèi)容就是利用C#怎么實現(xiàn)一個顏色漸變窗體控件,你們學(xué)到知識或技能了嗎?如果還想學(xué)到更多技能或者豐富自己的知識儲備,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道。


文章標(biāo)題:利用C#怎么實現(xiàn)一個顏色漸變窗體控件-創(chuàng)新互聯(lián)
文章位置:http://weahome.cn/article/djiehs.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部