This question is locked. New answers and comments are not allowed.
I am trying to create a page that has two rad windows. These Radwindows will not move and will not be closed.
This is a basic version of my scenario.
I want to add one RadWindow to the Red window and one RadWindow to the Blue Window.
Since you cannot set the parent of a RadWindow I'm curious if this is even possible without excessive amounts of positioning work ??
This is a basic version of my scenario.
<Grid x:Name="LayoutRoot"> <Grid.ColumnDefinitions> <ColumnDefinition Width="*" /> <ColumnDefinition Width="*" /> </Grid.ColumnDefinitions> <Grid Background="Red" x:Name="Red" Grid.Column="0"></Grid> <Grid Background="Blue" x:Name="Blue" Grid.Column="1"></Grid> </Grid>I want to add one RadWindow to the Red window and one RadWindow to the Blue Window.
Since you cannot set the parent of a RadWindow I'm curious if this is even possible without excessive amounts of positioning work ??