为表格边框绘制渐变颜色

时间:2016-11-14 04:42:16

标签: c# winforms

我想问一下如何为渐变色添加另一种颜色。 iam目前正在使用此代码

  private void add3_Paint(object sender, PaintEventArgs e)
    {
        System.Drawing.Drawing2D.LinearGradientBrush brush = new System.Drawing.Drawing2D.LinearGradientBrush(this.ClientRectangle, Color.LightPink, Color.Gold, System.Drawing.Drawing2D.LinearGradientMode.ForwardDiagonal);           
        e.Graphics.DrawRectangle(new System.Drawing.Pen(brush,10), this.ClientRectangle);
        brush.Dispose();
    }

结果是这样的

enter image description here

对于紫色是使用底部控制面板控制,请忽略它!。 我想问的是,你可以使用渐变色light pinkgold看到iam。但我想添加另一种颜色,例如添加另一种颜色绿色并添加另一种颜色红色(任何颜色的插槽)但我使用的代码只能访问two颜色

0 个答案:

没有答案