Click here to Skip to main content
15,880,469 members
Articles / Programming Languages / C#

Draggable Popup Window in Silverlight 3

Rate me:
Please Sign up or sign in to vote.
5.00/5 (7 votes)
19 Nov 2009CPOL 45.7K   1.1K   15   9
Allows a user to drag a popup to any location in the Silverlight window.

Introduction

In Silverlight 3, you can use a Popup control to show a non-modal window containing any sort of content. Although you can control the Popup's position by setting the HorizontalOffset and VerticalOffset properties, it can sometimes be hard to predict where the user would like the window to be positioned. Unfortunately, the user has no way to move the Popup control.

By attaching a PopupDragDrop object to your Popup control, you allow the user to drag it around the Silverlight window and place it wherever she likes.

Using the code 

Simply call the static PopupDragDrop.Attach method to wire up an instance of the class to your Popup. Attach takes two arguments: the Popup control and the FrameworkElement that will be the Popup's child (which holds the actual content that will be displayed). For example:

C#
// Create the Popup control and set the initial position.	
Popup myPopup = new Popup { HorizontalOffset = 200, VerticalOffset = 300 };

// Attach a PopupDragDrop object to make your Popup draggable.
// The Attach method will also set the Child property of the Popup.
PopupDragDrop.Attach(myPopup, new myUserControl());	

From this point, you show/hide the Popup in the usual way, using the IsOpen property of the Popup and the Visibility property of the child.

History

  • 11/19/2009 - Initial contribution.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions

 
GeneralWorks a treat Pin
bub19888-Nov-13 4:27
bub19888-Nov-13 4:27 
GeneralMy vote of 5 Pin
ricoeur4228-Mar-13 6:37
ricoeur4228-Mar-13 6:37 
GeneralMy vote of 5 Pin
AaronBastian28-Nov-12 2:14
AaronBastian28-Nov-12 2:14 
Generalwhat is myUserControl() ? Pin
levashoff27-Apr-11 9:37
levashoff27-Apr-11 9:37 
GeneralRe: what is myUserControl() ? Pin
dsmolen27-Apr-11 11:27
dsmolen27-Apr-11 11:27 
GeneralMy vote of 5 Pin
sintesia4-Apr-11 3:22
sintesia4-Apr-11 3:22 
Without frills and time-wasting eloquency narrating the history of information technology, this article shows a quick usable way to make the thing work.
GeneralCongrats Pin
viv28122-Jan-10 4:44
viv28122-Jan-10 4:44 
GeneralRe: Congrats Pin
dsmolen2-Jan-10 7:03
dsmolen2-Jan-10 7:03 
GeneralMore Description Needed Pin
Abhijit Jana19-Nov-09 17:15
professionalAbhijit Jana19-Nov-09 17:15 

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.