委托与事件入门(用户控件)

  1. /// <summary>
  2. /// 1.声明一个委托,用于代理一系列"无返回"及"不带参"的自定义方法
  3. /// </summary>
  4. public delegate void 委托名EventHandler(object sender, EventArgs e);
  5. public partial class 用户控件类名: UserControl
  6. {
  7.  /// <summary>
  8.  /// 2.在值改变时发生
  9.  /// </summary>
  10.  public event 委托名EventHandler 事件名;
  11.  private int _selectedPosition = 0;
  12.  /// <summary>
  13.  /// 控件的某属性
  14.  /// </summary>
  15.  public int SelectedPosition
  16.  {
  17.      get { return _selectedPosition; }
  18.      set { _selectedPosition = value; }
  19.  }
  20.  private void 控件的某操作_Clicked(object sender, EventArgs e)
  21.  {
  22.      //todo:...
  23.      
  24.      //3.值已经改变
  25.      if (事件名 != null)
  26.       事件名(this,EventArgs.Empty);
  27.  }
  28. }
  29. //--------------------
  30. //4.在客户端调用
  31. this.ucToothPosition1.OnValueChanged += new ValueChangedEventHandler(ucToothPosition1_OnValueChanged);
  32. void ucToothPosition1_OnValueChanged(object sender, EventArgs e)
  33. {
  34.     this.DialogResult = DialogResult.OK;
  35. }

 

你可能感兴趣的:(委托与事件入门(用户控件))