コード例 #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PanelContainerBase"/> class.
 /// </summary>
 public PanelContainerBase()
 {
     Header = new PanelHeader();
 }
コード例 #2
0
 /// <summary>
 /// Initializes a new instance of the <see cref="PanelHeader"/> class.
 /// </summary>
 /// <param name="another">Another <see cref="PanelHeader"/> instance to copy data from.</param>
 protected PanelHeader(PanelHeader another)
 {
     Icon      = another.Icon;
     Text      = another.Text;
     IsVisible = another.IsVisible;
 }
コード例 #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="RootNodeVM" /> class.
 /// </summary>
 /// <param name="model">Local file system data model.</param>
 public RootNodeVM(RootNode model)
 {
     Model  = model;
     Header = new PanelHeader();
 }