public void AddItem(string label, string status, TickboxState state)
 {
     _items.Add(new Tuple <string, string, TickboxState>(label, status, state));
 }
 public void AddItem(string label, string status, TickboxState state)
 {
     _items.Add(new Tuple<string, string, TickboxState>(label, status, state));
 }
Пример #3
0
 /// <summary>
 /// Initializes a new instance of the <see cref="MissionPassedScreenItem"/> class.
 /// </summary>
 /// <param name="label">The label, the text displayed at the left of this item.</param>
 /// <param name="status">The status, the text displayed at the right of this item.</param>
 /// <param name="tickbox">The <see cref="TickboxState"/> representing how the tickbox at the right of this <see cref="MissionPassedScreenItem"/> is displayed.</param>
 public MissionPassedScreenItem(string label, string status, TickboxState tickbox)
 {
     Label   = label;
     Status  = status;
     Tickbox = tickbox;
 }