Beispiel #1
0
 public ViewItem(string title, char icon, string descript, Type pageType, ViewItemTypes type = ViewItemTypes.Item)
 {
     Title    = title;
     Icon     = icon;
     Descript = descript;
     PageType = pageType;
     Type     = type;
 }
Beispiel #2
0
 public ViewItem(string title, char icon, string descript, int id, ViewItemTypes type = ViewItemTypes.Item)
 {
     Title    = title;
     Icon     = icon;
     Descript = descript;
     Id       = id;
     Type     = type;
 }