C# radioButton.Tag
时间: 2023-11-23 20:58:09 浏览: 149
android RadioButton
在C#中,RadioButton控件有一个Tag属性,可以用来存储与该控件相关的任何对象。Tag属性通常用于存储控件的自定义数据,以便在运行时使用。例如,您可以将一个对象分配给RadioButton的Tag属性,然后在单击RadioButton时访问该对象。
以下是一个示例,演示如何使用RadioButton的Tag属性:
```csharp
// 创建一个名为radioButton1的RadioButton控件
RadioButton radioButton1 = new RadioButton();
// 将一个字符串分配给radioButton1的Tag属性
radioButton1.Tag = "这是一个字符串";
// 在单击radioButton1时,显示radioButton1的Tag属性值
private void radioButton1_CheckedChanged(object sender, EventArgs e)
{
MessageBox.Show(radioButton1.Tag.ToString());
}
```
在上面的示例中,当单击radioButton1时,将显示一个消息框,其中包含字符串“这是一个字符串”。
阅读全文