Click here to Skip to main content
Licence CPOL
First Posted 19 Nov 2009
Views 15,643
Downloads 624
Bookmarked 12 times

Draggable Popup Window in Silverlight 3

By | 19 Nov 2009 | Article
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:

// 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)

About the Author

dsmolen



United States United States

Member



Sign Up to vote   Poor Excellent
Add a reason or comment to your vote: x
Votes of 3 or less require a comment

Comments and Discussions

 
You must Sign In to use this message board. (secure sign-in)
 
Search this forum  
 FAQ
    Noise  Layout  Per page   
  Refresh
Generalwhat is myUserControl() ? Pinmemberlevashoff9:37 27 Apr '11  
GeneralRe: what is myUserControl() ? Pinmemberdsmolen11:27 27 Apr '11  
GeneralMy vote of 5 Pinmembersintesia3:22 4 Apr '11  
GeneralCongrats Pinmemberviv28124:44 2 Jan '10  
GeneralRe: Congrats Pinmemberdsmolen7:03 2 Jan '10  
GeneralMore Description Needed PinmvpAbhijit Jana17:15 19 Nov '09  

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

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

Permalink | Advertise | Privacy | Mobile
Web02 | 2.5.120517.1 | Last Updated 19 Nov 2009
Article Copyright 2009 by dsmolen
Everything else Copyright © CodeProject, 1999-2012
Terms of Use
Layout: fixed | fluid