コード例 #1
0
 /// <summary>
 /// Raises the <see cref="PopupClosed"/> event.
 /// </summary>
 /// <param name="e"><see cref="PopupClosedEventArgs"/> describing the
 /// popup form that is being closed.</param>
 protected virtual void OnPopupClosed(PopupClosedEventArgs e)
 {
     if (this.PopupClosed != null)
     {
         this.PopupClosed(this, e);
     }
 }
コード例 #2
0
 /// <summary>
 /// Raises the <see cref="PopupClosed"/> event.
 /// </summary>
 /// <param name="e"><see cref="PopupClosedEventArgs"/> describing the
 /// popup form that is being closed.</param>
 protected virtual void OnPopupClosed(PopupClosedEventArgs e)
 {
    if (this.PopupClosed != null)
    {
       this.PopupClosed(this, e);
    }
 }
コード例 #3
0
		/// <summary>
		/// Hides the popup
		/// </summary>
		void popupHelper_PopupClosed(object sender, PopupClosedEventArgs e)
		{
			HideCollapsedBandPopup();
		}