/// <summary> /// Initializes a new instance of the <see cref="PanelContainerBase"/> class. /// </summary> public PanelContainerBase() { Header = new PanelHeader(); }
/// <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; }
/// <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(); }