This is a migrated thread and some comments may be shown as answers.

Rad Window Parent

1 Answer 82 Views
Window
This is a migrated thread and some comments may be shown as answers.
Stefen
Top achievements
Rank 1
Stefen asked on 13 Dec 2010, 11:56 PM
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. 

<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 ??

1 Answer, 1 is accepted

Sort by
0
George
Telerik team
answered on 16 Dec 2010, 01:48 PM
Hello Stefen,

The RadWindow is popup and you cannot place it in the user control. In order to restrict the RadWindow to not move, you could make it manually.
If you want to restrict the RadWindow from closing, you could set CanClose to False. 

All the best,
George
the Telerik team
Browse the videos here>> to help you get started with RadControls for Silverlight
Tags
Window
Asked by
Stefen
Top achievements
Rank 1
Answers by
George
Telerik team
Share this question
or