, , - , ?
public ListView MyListView { get { return this.listView1; } }
So, you get (at design time) the MyListView property in UserControl?
I think that if you need the right development-time support, you better change the "Modifier" property in the ListView itself (back to the original UserControl) to Public - this way you can change the ListView directly on instances of UserControl. In any case, I have succeeded.
source
share