How can I simulate the effect of a website expanding and shrinking popup in a WPF application?

Please go to http://msdn.microsoft.com/hi-in/default.aspx and look at the top right corner of the page.

There you will find the "Microsoft.com" extender. When you hover your mouse over it, it appears as a popup and grows. When you disconnect the mouse, the window shrinks. I want to emulate this effect in my WPF application using C #.

+1


source to share


2 answers


Not sure why you are moderating. You can use the control Popup

and animate its size.



+2


source


Take a look in this msdn forum post. This explains a little about the use of the popup control. Here 's another nice example.



+1


source







All Articles