This question is locked. New answers and comments are not allowed.
Hi.
While trying to get started with the RadWindow I'm quite confused and don't happen to run it. Where should I place the rad window?
1. Usually I had expected to make it a user control (create a new user control and replace UserControl with telerik:RadWindow)
While trying to get started with the RadWindow I'm quite confused and don't happen to run it. Where should I place the rad window?
1. Usually I had expected to make it a user control (create a new user control and replace UserControl with telerik:RadWindow)
| <telerikNavigation:RadWindow x:Class="Opas1.Views.RadWindow1" |
| xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" |
| xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" |
| xmlns:d="http://schemas.microsoft.com/expression/blend/2008" |
| xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" |
| xmlns:telerik="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls" |
| xmlns:telerikNavigation="clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation" |
| mc:Ignorable="d" |
| d:DesignHeight="300" d:DesignWidth="400"> |
| <Grid x:Name="LayoutRoot" Background="White"> |
| </Grid> |
| </telerikNavigation:RadWindow> |
but it says The tag 'RadWindow' does not exist in XMLL namespace 'clr-namespace:Telerik.Windows.Controls;assembly=Telerik.Windows.Controls.Navigation'.
2. If I should place it in an existing User Control, where to place it and make it visible? As this RadWindow should be independent from its calling User Control?