Class SidebarItem
Represents sidebar API object.
public class SidebarItem : ObservableObject, INotifyPropertyChanged
- Inheritance
-
SidebarItem
- Implements
- Inherited Members
Constructors
SidebarItem()
Creates new instance of SidebarItem.
public SidebarItem()
Properties
Activated
Called when item is activated.
public Action Activated { get; set; }
Property Value
Closed
Called when view is closed.
public Action Closed { get; set; }
Property Value
Icon
Gets or sets item icon.
public object Icon { get; set; }
Property Value
IconPadding
Gets or sets visual item padding.
public Thickness IconPadding { get; set; }
Property Value
Opened
Called when view is to be opened.
public Func<Control> Opened { get; set; }
Property Value
ProgressMaximum
Gets or sets maximum progress value.
public double ProgressMaximum { get; set; }
Property Value
ProgressValue
Gets or sets current progress value.
public double ProgressValue { get; set; }
Property Value
Title
Gets or sets item title.
public string Title { get; set; }
Property Value
Type
Gets or sets item type.
public SiderbarItemType Type { get; set; }
Property Value
Visible
Gets or sets item visibility.
public bool Visible { get; set; }