or
i have main window for the WPF aplication.
how can i put the radwindow onside the main windows,
so the sub radwindow will be only onside the main window, (detemine RestrictionZone,some thing like MDI)
private void button1_Click(object sender, RoutedEventArgs e)
{
RadWindow t = new RadWindow();
t.Width = 500;t.Height = 300;
t.Show();
}
<telerik:RadWindowManager ID="RadWindowManager1" RestrictionZoneID="windowsDataArea" runat="server">
<Windows>
<telerik:WeekViewDefinition MajorTickLength="1day" MinorTickLength="1day" ShowTimeRuler="False" ShowAllDayArea="False" /><TextBlock Text="{Binding CurrentSlide.Name}" /><TextBlock Text="{Binding CurrentSlide.Description}" /> // Would like to overlay Transitions onto the Listbox below when the CurrentSlide changes. Listbox uses a canvas to position and render elements.<ListBox x:Name="SlideList" BorderBrush="Transparent" BorderThickness="0" ItemsSource="{Binding CurrentSlide.Elements}" SelectionChanged="SlideList_SelectionChanged" > <ListBox.ItemsPanel> <ItemsPanelTemplate> <Canvas x:Name="editCanvas" Background="{Binding CurrentSlide.Background, Converter={StaticResource BackgroundConverter}}" /> </ItemsPanelTemplate> </ListBox.ItemsPanel></ListBox>