public ChevronItem(string text, bool isAct, ChevronItemType type)
     : this()
 {
     this._itemName   = text;
     this._activeItem = isAct;
     this._itemType   = type;
 }
Esempio n. 2
0
 public ChevronItem(string text, ChevronItemType type, string assocPgNm)
     : this(text, false, type)
 {
     this._assocPg = assocPgNm;
 }
Esempio n. 3
0
 public ChevronItem(string text, bool isAct, ChevronItemType type, Uri imgSrc)
     : this(text, isAct, type)
 {
     this._imgUrl = imgSrc;
 }
Esempio n. 4
0
 public ChevronItem(string text, bool isAct, ChevronItemType type)
     : this()
 {
     this._itemName = text;
     this._activeItem = isAct;
     this._itemType = type;
 }
 public ChevronItem(string text, ChevronItemType type, string assocPgNm)
     : this(text, false, type)
 {
     this._assocPg = assocPgNm;
 }
 public ChevronItem(string text, bool isAct, ChevronItemType type, Uri imgSrc)
     : this(text, isAct, type)
 {
     this._imgUrl = imgSrc;
 }