如何在表格上画一个覆盖整个工作区域的圆?

发布于 2024-09-27 06:27:22 字数 640 浏览 2 评论 0原文

如何在表格上画一个覆盖整个工作区域的圆?

我已经尝试过以下代码。但是当我重新调整表格大小时,圆圈会变形。 替代文本

public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Paint(object sender, PaintEventArgs e)
        {
            Graphics g = e.Graphics;

            g.SmoothingMode = SmoothingMode.AntiAlias;

            Pen redPen = new Pen(Color.Red, 3);
            Rectangle rect = new Rectangle(0,0, this.ClientSize.Width, this.ClientSize.Height);

            g.DrawEllipse(redPen, rect);

        }
    }

How to draw a circle on a form that covers the whole working area?

I have tried the following code. But when I re-size the form, the circle is distorted.
alt text

public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void Form1_Paint(object sender, PaintEventArgs e)
        {
            Graphics g = e.Graphics;

            g.SmoothingMode = SmoothingMode.AntiAlias;

            Pen redPen = new Pen(Color.Red, 3);
            Rectangle rect = new Rectangle(0,0, this.ClientSize.Width, this.ClientSize.Height);

            g.DrawEllipse(redPen, rect);

        }
    }

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

乜一 2024-10-04 06:27:22

您还应该挂钩 ClientSizeChanged 事件来触发重绘。

当前发生的情况是,Windows 假定只有变得可见的一小部分需要重新绘制,并剪掉其他所有内容。因此,在调整大小时,您需要使完整表单无效 (Invalidate())。

如果调整大小时圆圈开始闪烁,请启用表单的双缓冲。

You should hook into the ClientSizeChanged event as well to trigger a redraw.

What currently happens is that Windows assumes that only the small portion which became visible needs to be redrawn, and clips everything else off. You therefore need to invalidate the full form (Invalidate()) when a resize takes place.

If the circle starts flickering when resizing, enable double buffering of the form.

走过海棠暮 2024-10-04 06:27:22

尝试将 Form 的 DoubleBuffered 属性设置为 true。

Try to set the DoubleBuffered property of the Form to true.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文