How to know the position of the Silverlight ChildWindow when you close it
Posted
by Silver
on Stack Overflow
See other posts from Stack Overflow
or by Silver
Published on 2010-04-25T09:47:03Z
Indexed on
2010/04/25
9:53 UTC
Read the original article
Hit count: 372
Please, help me.
public myChildWindow()
{
InitializeComponent();
// set left and top from saved values
Margin = new Thickness(70, 50, 0, 0);
}
private void ChildWindow_Closed(object sender, EventArgs e)
{
// How to know the position of the ChildWindow when you close it ?
// get left and top for save values
...
}
© Stack Overflow or respective owner