Click here to Skip to main content
15,867,780 members
Articles / Programming Languages / C#

Simple Popup Control

Rate me:
Please Sign up or sign in to vote.
4.93/5 (167 votes)
26 Mar 2013LGPL35 min read 1M   24.6K   522   243
How to create a custom pop-up control in C#.
Sample application using a custom popup control:

Custom popup control

Another application using a custom tooltip...

Custom tooltip

... and a more complex popup that can be resized:

Resizable popup

Tracking popup opening below the specified part of a control:

Tracking popup

Cascade of popup controls:

Cascade of popup controls

Introduction

Popup windows are everywhere. Each tooltip is a popup window; each combobox has its popup list; many advertisements are also shown in popup windows.

How to Create a Popup Control in .NET?

At first, we might choose the Form class as a base class for our popup control. Unfortunately, it is a bad choice because when we show our popup form, the parent form loses its focus. A popup window should not cause that. Luckily, there is a class that does not cause loss of focus. We can use it as a base class for our popup control. It is the ToolStripDropDown class.

How to Use the ToolStripDropDown Class?

This would be the simplest way, without deriving from that class:

C#
ToolStripDropDown popup = new ToolStripDropDown();
popup.Margin = Padding.Empty;
popup.Padding = Padding.Empty;
ToolStripControlHost host = new ToolStripControlHost(content);
host.Margin = Padding.Empty;
host.Padding = Padding.Empty;
popup.Items.Add(host);
popup.Show(parentForm, location);

In this case, content is a control we want to show in a popup window. Of course, we have to remember to later dispose the popup window and its contents.

Popup Class

I wrote a Popup class that derives from ToolStripDropDown and simplifies the creating and managing of popup windows. The class calculates by itself where it should "pop" on the screen. It also disposes itself immediately after disposing the content control. To show a popup with a button, for example, we could write:

C#
new Popup(new Button()).Show(someControl);

Here, someControl would be a control below which we want to show our popup.

Popup Resizing

To enable resizing for your popup, you must set the Resizable property to true and add the following code into your content control class:

C#
protected override void WndProc(ref Message m)
{
    if ((Parent as Popup).ProcessResizing(ref m)) return;
    base.WndProc(ref m);
}

You also have to set the ResizeRedraw property of the content control to true.

Important!

To specify the minimum and maximum size of the content control, please use the following properties:

  • content.MinimumSize and content.MaximumSize only inside the constructor of the content control
  • popup.MinimumSize and popup.MaximumSize elsewhere

ComboBox Class

The System.Windows.Forms.ComboBox class behaves in a strange way when it is on a popup control. It closes the popup control when the user clicks on a part of the combobox's dropdown that sticks out of a popup. So, I have created a PopupControl.ComboBox class that behaves properly.

PopupComboBox Class

This is a base class for comboboxes that can have a custom dropdown attached.

Animation Support

Animation is enabled by default. To change it, set the AnimationDuration, HidingAnimation, and ShowingAnimation properties.

Popup Members

Properties

  • AcceptAlt — Gets or sets a value indicating whether pressing the Alt key should close the popup.
  • AnimationDuration — Determines the duration of the animation.
  • Content — Gets the content of the popup.
  • FocusOnOpen — Gets or sets a value indicating whether the content should receive the focus after the popup has been opened.
  • HidingAnimation — Determines which animation to use while hiding the popup window.
  • MaximumSize — Gets or sets a maximum size of the popup.
  • MinimumSize — Gets or sets a minimum size of the popup.
  • NonInteractive — Gets or sets a value indicating whether the popup acts like a transparent windows; e.g., it cannot be clicked (note — it does not affect child controls).
  • Resizable — Gets or sets a value indicating whether the popup is resizable.
  • ShowingAnimation — Determines which animation to use while showing the popup window.

Constructor

  • Popup(Control content) — Initializes a new instance of the Popup class.

Methods

  • void PaintSizeGrip(PaintEventArgs e) — Paints the sizing grip.
  • bool ProcessResizing(ref Message m) — Processes the resizing messages.
  • void Show(Control control) — Shows the popup window below the specified control.
  • void Show(Control control, Rectangle area) — Shows the popup window below the specified area of the specified control.

TODO

  • Base class for custom tooltips.
  • Office 2007-like tooltip class.

History

  • 1.5 (20.10.2010) — Important! This is the last “standalone” version of the control. The next version is included in a new project hosted at CodePlex.
    • Added the NonInteractive property to the Popup class.
    • Fixed resizing on DualView/multi monitor systems.
    • Popup is now always shown on top of other windows (previously the popup could be shown below its parent during the animation process).
    • PopupComboBox didn’t properly set focus to its dropdown on Windows 7.
    • Improved compatibility with Mono.
    • Uses C# 3.0 syntax (auto-properties, lambdas).
    • Signed binaries for both .NET 2.0 and .NET 4.0 are available.
    • Solution upgraded to the Visual C# 2010 format.
    • License changed to LGPL 3.0.
  • 1.4 (16.01.2009)
    • Added the DroppedDown property, and the DropDown, DropDownClosed events to the PopupComboBox class.
    • Fixed resizing of a popup when the MaximumSize property of the content control is not set.
  • 1.3.1 (20.09.2008)
    • Tab-key properly transfers the focus between controls contained in a popup window.
    • Minor bugs fixed.
  • 1.3 (04.05.2008)
    • Added the AnimationDuration, HidingAnimation, and ShowingAnimation properties.
    • Removed the UseFadeEffect property.
    • Popup control can animate now even when the FocusOnOpen property is set to false.
  • 1.2.5 (24.01.2008)
    • Fixed “Alt+F4” bug.
    • Fixed drawing the sizing grip.
    • Minor bugs fixed.
  • 1.2 (24.07.2007)
    • Added animation support.
    • Added AcceptAlt property.
    • Clicking on the non-client area bug fixed.
    • Minor bugs fixed.
  • 1.1 (05.07.2007)
    • Added XML documentation.
    • "Fixed" the ComboBox class, so it can be used inside a popup.
    • Added base class for a combobox that can have a custom dropdown, PopupComboBox.
    • The sizing grip is automatically drawn if a popup is resizable.
    • Added support for a minimum and maximum size of a resizable popup.
    • Minor bugs fixed.
  • 1.0
    • 08.06.2007 – Added resizing support and capability for using cascading pop-ups.
    • 06.02.2007 – Added keyboard and custom region support, and the ShowForControl method name changed to Show.
    • 03.02.2007 – First version.

License

This article, along with any associated source code and files, is licensed under The GNU Lesser General Public License (LGPLv3)


Written By
Software Developer
Poland Poland
I am a graduate of Wroclaw University of Science and Technology, Poland.

My interests: gardening, reading, programming, drawing, Japan, Spain.

Comments and Discussions

 
QuestionExcelent work Pin
Member 1056841324-Nov-21 22:39
Member 1056841324-Nov-21 22:39 
QuestionPlease help me with my custom control (a linklabel listbox) Pin
haiduong872-Jun-19 8:56
haiduong872-Jun-19 8:56 
QuestionEX-CE-LENT Pin
LeCacho17-Nov-16 8:22
professionalLeCacho17-Nov-16 8:22 
QuestionHow can I use ToolStripSplitButton Pin
fabricedupre@free.fr22-Apr-16 20:51
fabricedupre@free.fr22-Apr-16 20:51 
QuestionHow to toggle the popup visible / hidden Pin
hdr2614-Nov-14 20:17
hdr2614-Nov-14 20:17 
QuestionHi Lukasz Pin
george498630-Oct-14 0:21
professionalgeorge498630-Oct-14 0:21 
QuestionSimple Popup Contorl in VB.Net Pin
fuoe129-Jun-14 18:55
fuoe129-Jun-14 18:55 
AnswerRe: Simple Popup Contorl in VB.Net Pin
Lukasz Sw.9-Jun-14 20:19
Lukasz Sw.9-Jun-14 20:19 
QuestionClosing with Tab Pin
_E_T_18-May-14 22:01
_E_T_18-May-14 22:01 
AnswerRe: Closing with Tab Pin
Lukasz Sw.18-May-14 22:11
Lukasz Sw.18-May-14 22:11 
QuestionPopup Control -- Nice...and now for the GRAND FINALE... Pin
robertd90328-Apr-14 8:48
robertd90328-Apr-14 8:48 
AnswerRe: Popup Control -- Nice...and now for the GRAND FINALE... Pin
Lukasz Sw.28-Apr-14 21:22
Lukasz Sw.28-Apr-14 21:22 
GeneralMy vote of 5 Pin
Trương Tấn Phát25-Aug-13 8:29
Trương Tấn Phát25-Aug-13 8:29 
QuestionGreat Job, but how to focus on Textbox Pin
Member 390506419-Jul-13 9:15
Member 390506419-Jul-13 9:15 
QuestionDropdown height Pin
esb7716-Jul-13 4:13
esb7716-Jul-13 4:13 
QuestionDesigner Dispose Pin
zigygonzalez25-Mar-13 6:51
zigygonzalez25-Mar-13 6:51 
AnswerRe: Designer Dispose Pin
Lukasz Sw.26-Mar-13 22:43
Lukasz Sw.26-Mar-13 22:43 
QuestionHow can I move popup control? Pin
minhvc3-Dec-12 21:33
minhvc3-Dec-12 21:33 
AnswerRe: How can I move popup control? Pin
Lukasz Sw.26-Mar-13 22:40
Lukasz Sw.26-Mar-13 22:40 
QuestionCodeplex URL? Pin
Dan Neely7-Nov-12 5:30
Dan Neely7-Nov-12 5:30 
AnswerRe: Codeplex URL? Pin
Lukasz Sw.26-Mar-13 22:39
Lukasz Sw.26-Mar-13 22:39 
QuestionHow to set custom display locations? Pin
vighnu16-Aug-12 0:50
vighnu16-Aug-12 0:50 
AnswerRe: How to set custom display locations? Pin
Lukasz Sw.16-Sep-12 22:52
Lukasz Sw.16-Sep-12 22:52 
AnswerTextbox focus FIX Pin
SteveStokes3-Jul-12 5:43
SteveStokes3-Jul-12 5:43 
QuestionRe: Textbox focus FIX Pin
ranzhifa23-Sep-12 16:36
ranzhifa23-Sep-12 16:36 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.