Пример #1
0
		private void llfix_LinkClicked(object sender, System.Windows.Forms.LinkLabelLinkClickedEventArgs e)
		{
			CheckItemState res = this.CheckState;
			OnFix();
			if (ClickedFix!=null) 			
				res = ClickedFix(this, res);
			
			this.CheckState = res;
		}
Пример #2
0
		public void Check()
		{
			CheckItemState res = OnCheck();
			if (CalledCheck!=null) res = CalledCheck(this, res);
			this.CheckState = res;
		}