我有这个userControl
包含ListBox
. 我想ListBox
从另一个访问它userControl
。
例如:
UserControl1.ListBox1.Items.Count;
在您的用户控件中添加公共属性 ItemsCount
public int ItemsCount
{
get { return ListBox1.Items.Count; }
}
or
public ListBox MyListBox
{
get { return ListBox1; }
}
访问整个列表框
ListBox
在你的第一个属性中usercontrol
获得它
public ListBox lstBox
{
get { return this.listBox1;}
}
现在像这样从其他用户控件访问 ListBox
usercontrol1 obj = new usercontrol1();
int itemCount = obj.lstBox.Items.Count ;