コード例 #1
0
 public ItemWithCheckBoxStep(string text, bool checkedAtStart, string stepTitle, CheckBoxStep step, Action <bool> OnCheckedChanged) : base(text, checkedAtStart, OnCheckedChanged)
 {
     this.itemStep = step;
     dialogItem    = new ItemWithDialog <ProgressDialog>(new ProgressDialog(stepTitle, itemStep));
 }
コード例 #2
0
		public ItemWithCheckBoxStep (string text, bool checkedAtStart, string stepTitle, CheckBoxStep step, Action<bool> OnCheckedChanged) : base(text, checkedAtStart, OnCheckedChanged)
		{
			this.itemStep = step;
			dialogItem = new ItemWithDialog<ProgressDialog>(new ProgressDialog(stepTitle, itemStep));
		}
コード例 #3
0
 public ItemWithCheckBoxStep(string text, bool checkedAtStart, string stepTitle, CheckBoxStep step) : this(text, checkedAtStart, stepTitle, step, null)
 {
 }
コード例 #4
0
		public ItemWithCheckBoxStep (string text, bool checkedAtStart, string stepTitle, CheckBoxStep step) : this(text, checkedAtStart, stepTitle, step, null)
		{
			
		}