我有一个带有初始文本的textbox
名称。
我也有一些。 TxtHelp
RadioButtons
当我触发事件时,Mouse_Hover
我想将其更改TxtHelp.Text
为自定义文本。
当我触发事件时,Mouse_Leave
我想返回TxtHelp
.
我知道如何做到这一点,使用2
每个工具的事件,所以如果我有 4 个 RadioButtons,它将是8
事件。这是很多代码。就像each
我拥有的单选按钮的代码一样:
private void rb_Serial_MouseHover(object sender, EventArgs e)
{
txt_Ajuda.Text = "CustomText different for each RadioButton";
}
private void rb_Serial_MouseLeave(object sender, EventArgs e)
{
txt_Ajuda.Text = "Return to the initial value of textbox";
}
有没有办法让它更多practical
?某种方式可以带我less
编码?