gpt4 book ai didi

c# - TableLayoutPanel 中的单选按钮行为

转载 作者:太空宇宙 更新时间:2023-11-03 12:44:55 25 4
gpt4 key购买 nike

我正在使用 TableLayoutPanel 和 anchor 属性来制作一个独立于屏幕分辨率或窗体大小调整而看起来不错的窗口应用程序。我提到了 this article为了设计winform。

我的表单上有 3 个 RadioButtons。在没有 TableLayoutPanel 的情况下工作之前,RadioButtons 的行为符合我的预期。选中一个 RadioButton,取消选中另外两个。将每个 RadioButton 添加到 TableLayoutPanel 的不同单元格后,RadioButtons 的行为发生了变化。选中一个 RadioButton 不会取消选中其他按钮。

enter image description here

是否有任何我可以设置的属性(组属性)让 3 个 RadioButtons 一起工作?

最佳答案

首先让我说,一个好的解决方案的关键是保持属于一个组的按钮的视觉范例;用户一定不会对 RadioButtons 感到惊讶,尽管它们彼此相距很远。但您的布局似乎可以很好地解决这一问题。

可能正是出于这个原因,没有允许随机分组 RB 的属性..

这是一个帮助器类,它独立于容器管理 RadioButtons..:

class RadioCtl
{
private List<RadioButton> buttons { get; set; }
private bool auto = false;

public RadioCtl() { buttons = new List<RadioButton>(); }

public int RegisterRB(RadioButton rb)
{
if (!buttons.Contains(rb))
{
buttons.Add(rb);
rb.CheckedChanged += rb_CheckedChanged;
}
return buttons.IndexOf(rb);
}

void rb_CheckedChanged(object sender, EventArgs e)
{
RadioButton rbClicked = sender as RadioButton;
if (rbClicked == null || auto) return;

auto = true;
foreach (RadioButton rb in buttons)
{
if ((rb != rbClicked) && (rb.Parent != rbClicked.Parent) )
rb.Checked = false;
}
auto = false;
}

public void UnregisterRB(RadioButton rb)
{
if (buttons.Contains(rb))
{
buttons.Remove(rb);
rb.CheckedChanged -= rb_CheckedChanged;
}
}

public void Clear() { foreach(RadioButton rb in buttons) UnregisterRB(rb); }

public int IndexOfRB(RadioButton rb) { return buttons.IndexOf(rb); }
}

要使用它,您需要注册每个要加入“虚拟组”的RadioButton..:

static RadioCtl RbCtl = new RadioCtl();

public Form1()
{
InitializeComponent();

RbCtl.RegisterRB(radioButton1);
RbCtl.RegisterRB(radioButton2);
RbCtl.RegisterRB(radioButton3);
RbCtl.RegisterRB(radioButton4);
RbCtl.RegisterRB(radioButton5);
}

您可以随时注销或重新注册任何RadioButton 或在组中查找索引。

另请注意,这仅支持一个RadioButtons。如果您需要更多,请使用第二个对象或扩展该类以允许多个可能命名的组。为此,您可以将 List 替换为 Dictionary 并稍微扩展签名和代码..

关于c# - TableLayoutPanel 中的单选按钮行为,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/37675837/

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