Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一组在页面加载期间动态生成的单选按钮。想不出在 C# 中获取选定单选按钮的最佳方法。
有任何想法吗?
您可以使用GroupName属性。然后遍历同一 GroupName 中的所有单选按钮以选择一个。
var checkedButton = container.Controls .OfType<RadioButton>() .FirstOrDefault(r => r.GroupName=="YourGroup" && r.Checked);
您需要使用组,将所有复选框组合在一起,然后获取同一组内的所有单选按钮。
您可以使用GroupName属性来实现此目的。