gpt4 book ai didi

c# - Windows 窗体中的切换开关控件

转载 作者:行者123 更新时间:2023-11-30 13:54:55 25 4
gpt4 key购买 nike

我正在使用 CheckBox 设计一个切换开关控件,但目前我的控件只绘制一个圆圈。如何绘制如下图所示的圆形,以及如何根据控件的值更改圆的位置以表示选中和未选中状态,如下图所示?

Enter image description here

这是我的代码:

public class MyCheckBox:CheckBox
{
public MyCheckBox()
{
this.Appearance = System.Windows.Forms.Appearance.Button;
this.BackColor = Color.Transparent;
this.TextAlign = ContentAlignment.MiddleCenter;
this.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
this.FlatAppearance.BorderColor = Color.RoyalBlue;
this.FlatAppearance.BorderSize = 2;
}

protected override void OnPaint(PaintEventArgs e)
{
this.OnPaintBackground(e);
using (var path = new GraphicsPath())
{
var c = e.Graphics.ClipBounds;
var r = this.ClientRectangle;
r.Inflate(-FlatAppearance.BorderSize, -FlatAppearance.BorderSize);
path.AddEllipse(r);
e.Graphics.SetClip(path);
base.OnPaint(e);
e.Graphics.SetClip(c);
e.Graphics.SmoothingMode = System.Drawing.Drawing2D.SmoothingMode.AntiAlias;
if (this.Checked)
{
using (var p = new Pen(FlatAppearance.BorderColor,
FlatAppearance.BorderSize))
{
e.Graphics.DrawEllipse(p, r);
}
}
}
}
}

最佳答案

我知道这是一个 Windows 窗体问题。但你可能想看看 Toggle Switches或阅读更多关于 Universal Windows App Components 的信息.

无论如何,这里是 Windows 窗体开发人员的答案。它显示了我们如何自定义复选框的呈现以具有这种外观。

目前您只绘制了一个椭圆,它相当于一个切换按钮。但是如果你想像下图那样显示,你应该先画一个圆形作为背景,然后根据Checked的值,画一个check circle。使用答案的示例 部分中的代码,您可以获得 CheckBox有这样一个用户界面:

Enter image description here

示例

此示例的重要之处在于它完全是一个 CheckBox 控件并支持使用鼠标和键盘进行检查。它还支持数据绑定(bind)和 CheckBox 的所有其他标准功能。代码并不完美,但有一个是/否切换开关是一个很好的起点:

using System.Drawing;
using System.Drawing.Drawing2D;
using System.Windows.Forms;

public class MyCheckBox : CheckBox
{
public MyCheckBox()
{
SetStyle(ControlStyles.UserPaint | ControlStyles.AllPaintingInWmPaint, true);
Padding = new Padding(6);
}
protected override void OnPaint(PaintEventArgs e)
{
this.OnPaintBackground(e);
e.Graphics.SmoothingMode = SmoothingMode.AntiAlias;
using (var path = new GraphicsPath())
{
var d = Padding.All;
var r = this.Height - 2 * d;
path.AddArc(d, d, r, r, 90, 180);
path.AddArc(this.Width - r - d, d, r, r, -90, 180);
path.CloseFigure();
e.Graphics.FillPath(Checked ? Brushes.DarkGray : Brushes.LightGray, path);
r = Height - 1;
var rect = Checked ? new Rectangle(Width - r - 1, 0, r, r)
: new Rectangle(0, 0, r, r);
e.Graphics.FillEllipse(Checked ? Brushes.Green : Brushes.WhiteSmoke, rect);
}
}
}

关于c# - Windows 窗体中的切换开关控件,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/38431674/

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