CSharpUtils.Forms.ProgressForm.ProgressForm C# (CSharp) Метод

ProgressForm() публичный Метод

public ProgressForm ( ) : System
Результат System
		public ProgressForm()
		{
			InitializeComponent();

			this.OnCancelClick = () => {
				return true;
			};

			Cancel += delegate()
			{
				Cancelled = true;
			};
			Complete += new Action(ProgressForm_Ended);
		}