別のコントロールのプロパティをプロパティ ウィンドウに表示するにはどうすればよいですか。たとえば、私が持っている場合
public class MyClass : UserControl
{
public MyClass(){}
public bool Visible{get;set}// Property of MyClass
public MyProperties GridProp {get;set;}// Tried this but does not show the properties
//of MyProperties class
}
public class MyProperties
{
public MyProperties() { }
public bool Visible { get; set; }
public Color Color { get; set; }
}
MyProperties
のプロパティとともに表示されるプロパティを取得するにはどうすればよいMyClass
ですか?