示例#1
0
文件: CheckBox.cs 项目: yaram/Eto
 /// <summary>
 /// Raises the checked changed event.
 /// </summary>
 public void OnCheckedChanged(CheckBox widget, EventArgs e)
 {
     widget.Platform.Invoke(() => widget.OnCheckedChanged(e));
 }
示例#2
0
			/// <summary>
			/// Raises the checked changed event.
			/// </summary>
			public void OnCheckedChanged(CheckBox widget, EventArgs e)
			{
				widget.Platform.Invoke(() => widget.OnCheckedChanged(e));
			}
示例#3
0
 /// <summary>
 /// Raises the checked changed event.
 /// </summary>
 public void OnCheckedChanged(CheckBox widget, EventArgs e)
 {
     using (widget.Platform.Context)
         widget.OnCheckedChanged(e);
 }