我如何能够从另一个表单中更改另一个表单的用户控件内的文本框的值。
Form1的UserControl2上的代码:
public string TextValue
{
get
{
return textBox2.Text;
}
set
{
textBox2.Text = value;
}
}
Form2上的代码
private void listView1_SelectedIndexChanged(object sender, EventArgs e)
{
if (listView1.SelectedIndices.Count <= 0)
{
return;
}
int intselectedindex = listView1.SelectedIndices[0];
if (intselectedindex >= 0)
{
u1.TextValue = listView1.Items[intselectedindex].Text;
}
}