gpt4 book ai didi

主窗体上的 C# 子窗体具有灰色效果

转载 作者:行者123 更新时间:2023-11-30 21:49:32 25 4
gpt4 key购买 nike

我希望子窗体显示在主窗体之上,周围的所有空白区域都具有一定的不透明度。我使用 C# winforms pop up with background faded 中提供的解决方案实现了同样的效果.

现在我希望子窗体中使用的面板具有圆角。有帮助吗?

我使用下面链接中的面板来制作圆角。面板有圆角,但矩形线(在图像中突出显示)仍然可见。有什么办法让它消失吗? http://www.openwinforms.com/creating_cool_gradient_panel_gdi.html

enter image description here

最佳答案

我找到了解决方案。

在表单绘制上添加:

 this.BackColor = Color.Lime;
this.TransparencyKey = Color.Lime;

var hb = new HatchBrush(HatchStyle.Percent60, this.TransparencyKey);
e.Graphics.FillRectangle(hb, this.DisplayRectangle);

在表单加载时使面板边缘变圆,其中 ctrl = 面板。

Rectangle bounds = new Rectangle(0, 0, ctrl.Width, ctrl.Height);
int iCornerRadius = 20;
GraphicsPath gpath = new GraphicsPath();
gpath.AddArc(bounds.X, bounds.Y, iCornerRadius, iCornerRadius, 180, 90);
gpath.AddArc(bounds.X + bounds.Width - iCornerRadius, bounds.Y, iCornerRadius, iCornerRadius, 270, 90);
gpath.AddArc(bounds.X + bounds.Width - iCornerRadius, bounds.Y + bounds.Height - iCornerRadius, iCornerRadius, iCornerRadius, 0, 90);
gpath.AddArc(bounds.X, bounds.Y + bounds.Height - iCornerRadius, iCornerRadius, iCornerRadius, 90, 90);
gpath.CloseAllFigures();

ctrl.Region = new Region(gpath);
ctrl.Show();

关于主窗体上的 C# 子窗体具有灰色效果,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/36855559/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com