wpf controls - How to set the location of a WPF window? -


i have list view in have defined custom cell user control.

in custom cell given user hyperlink, showing wpf dialog when user clicks on hyperlink.

i want wpf dialog comes above hyperlink..

please let me know how can acheive or how set location of dialog comes above hyperlink.

window.left , window.top

var location = mytextblock.pointtoscreen(new point(0,0)); window.left = location.x; window.top = location.y-window.height; 

Comments

Popular posts from this blog

javascript - Enclosure Memory Copies -

php - Replacing tags in braces, even nested tags, with regex -