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.
var location = mytextblock.pointtoscreen(new point(0,0)); window.left = location.x; window.top = location.y-window.height;
Comments
Post a Comment