This question is locked. New answers and comments are not allowed.
Hello,
I've got a problem with radwindow... I've upgraded from q3'11 to q2' 12 and when I use a radwindow I got no "popup" window, just splashed context on the current page...I've tried setting IsTopMost = true and removing ResizeMode but nothing happens... what can be the cause of the problem?
He're my login.xaml
Thanks
I've got a problem with radwindow... I've upgraded from q3'11 to q2' 12 and when I use a radwindow I got no "popup" window, just splashed context on the current page...I've tried setting IsTopMost = true and removing ResizeMode but nothing happens... what can be the cause of the problem?
He're my login.xaml
<telerik:RadWindow xmlns:local="clr-namespace:xxx.Controls" xmlns:login="clr-namespace:xxx.Login" x:Class="xxx.Login.LoginForm" KeyDown="LoginForm_KeyDown" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" mc:Ignorable="d" HorizontalAlignment="Center" CanClose="False" IsTopmost="True" > <telerik:RadWindow.Header> <StackPanel Orientation="Horizontal"> <Image Source="../../Images/16x16/logo.png"></Image> <TextBlock Text="Login Form"></TextBlock> </StackPanel> </telerik:RadWindow.Header> <Grid> <Grid.RowDefinitions> <RowDefinition Height="25"></RowDefinition> <RowDefinition Height="30"></RowDefinition> <RowDefinition Height="20"></RowDefinition> <RowDefinition ></RowDefinition> </Grid.RowDefinitions> <Grid.ColumnDefinitions> <ColumnDefinition Width="100"></ColumnDefinition> <ColumnDefinition></ColumnDefinition> </Grid.ColumnDefinitions> <TextBlock Text="Nome utente" Grid.Row="0" Grid.Column="0" VerticalAlignment="Center" ></TextBlock> <TextBlock Text="Password" Grid.Row="1" Grid.Column="0" VerticalAlignment="Center" Margin="0,5,0,0" ></TextBlock> <TextBox x:Name="tbUserName" Grid.Row="0" Grid.Column="1" Margin="0,0,5,0" HorizontalAlignment="Stretch"></TextBox> <PasswordBox x:Name="tbPassword" Grid.Row="1" Grid.Column="1" Margin="0,5,5,0" HorizontalAlignment="Stretch" ></PasswordBox> <CheckBox Grid.Row="2" Content="Ricorda utente" Grid.ColumnSpan="2" VerticalAlignment="Center" Name="cbRememberMe"></CheckBox> <TextBlock Name="tbMessaggioErrore" Text="Nome Utente o Password non valida" Grid.Row="3" Grid.ColumnSpan="2" Foreground="Red" Visibility="Collapsed"></TextBlock> <StackPanel Grid.Row="4" Grid.Column="1" Orientation="Horizontal" HorizontalAlignment="Right" Margin="0,15,5,0" > <Button x:Name="loginButton" Content="OK" Click="LoginButton_Click" Width="60"/> <Button x:Name="loginCancel" Content="Cancel" Click="CancelButton_Click" Width="60" Margin="5,0,0,0" /> </StackPanel> </Grid></telerik:RadWindow>Thanks