NetXP 3.0 Reference

PopupForm Class

Provides an inheritable, reusable popup form that implements all the functionality of a typical popup window.

For a list of all members of this type, see PopupForm Members.

System.Object
   MarshalByRefObject
      Component
         Control
            ScrollableControl
               ContainerControl
                  Form
                     PopupForm

[Visual Basic]
Public Class PopupForm
Inherits Form
Implements System.Windows.Forms.IMessageFilter
[C#]
public class PopupForm : Form, IMessageFilter

Thread Safety

Public static (Shared in Visual Basic) members of this type are safe for multithreaded operations. Instance members are not guaranteed to be thread-safe.

Remarks

Call the ShowPopup function instead of the Show function to display a popup form.

Example

// using a PopupForm in a control
PopupForm frm = new PopupForm();
frm.ShowPopup(this.FindForm(), new Point(0, 0), false);

Requirements

Namespace: NETXP.Library

Assembly: NETXP.Library (in NETXP.Library.dll)

See Also

PopupForm Members | NETXP.Library Namespace