Hi,
I'd like to define multiple RadWindow in cascading order (attached file).
I have read the link bellow
http://www.telerik.com/help/silverlight/radwindow-features-positioning.html
Also I have read the code for RadWindow/Ordering (which was in demo/Window/Ordering)
but still I'm not sure how I can implement cacading functionality. Since in the sample the specific left and top has been set , whereas I'm looking for a solution that the first window open in the center and the next windows opens with left+=20 and Top+=20
I'd be thankful you guide me what is the best solution for that
Thank you,
I'd like to define multiple RadWindow in cascading order (attached file).
I have read the link bellow
http://www.telerik.com/help/silverlight/radwindow-features-positioning.html
Also I have read the code for RadWindow/Ordering (which was in demo/Window/Ordering)
private void window_Opened(object sender, RoutedEventArgs e)
{
window.Opened -= window_Opened;
int offsetLeft = 500;
int offsetTop = 200;
foreach (ExampleWindow w in windows)
{
w.Left = offsetLeft;
w.Top = offsetTop;
w.Show();
offsetLeft += 20;
offsetTop += 20;
}
}
but still I'm not sure how I can implement cacading functionality. Since in the sample the specific left and top has been set , whereas I'm looking for a solution that the first window open in the center and the next windows opens with left+=20 and Top+=20
I'd be thankful you guide me what is the best solution for that
Thank you,