删除按钮周围的白色边框

时间:2018-02-26 15:19:31

标签: c# winforms

我的应用程序窗口背景中绘制了一个矩形,代码如下:

public Form1()
{
    InitializeComponent();
    Paint += myDrawingPanel_Paint;
}


private void myDrawingPanel_Paint(object sender, PaintEventArgs e)
{
    System.Drawing.SolidBrush myBrush = new System.Drawing.SolidBrush(System.Drawing.Color.FromArgb(0, 102, 205));
    System.Drawing.Graphics formGraphics;
    formGraphics = this.CreateGraphics();
    formGraphics.FillRectangle(myBrush, new Rectangle(0, 100, Form1.ActiveForm.Width, Form1.ActiveForm.Height));
    myBrush.Dispose();
    formGraphics.Dispose();
}

这个矩形上的按钮都有这个白色边框,我想删除它们。 Buttons with white borders 我尝试将边距设置为0,使用外观选项进行播放但从未设法摆脱它们。

0 个答案:

没有答案