hi ya,
Framework 4.5. VS 2012 Ultimate Update 3.
Telerik WPF 2013 Q1 NET 45
I embedded that control in a Window in my WPF desktop project and sometimes everything is stuck and I need to close my IDE throught Task Manager.
xaml:
code-behind:
Sometimes I can see this error:
"Error argument 9 NullReferenceException: Referencia a objeto no establecida como instancia de un objeto.
"Reference not established like object instance"
Thanks in advance,
Framework 4.5. VS 2012 Ultimate Update 3.
Telerik WPF 2013 Q1 NET 45
I embedded that control in a Window in my WPF desktop project and sometimes everything is stuck and I need to close my IDE throught Task Manager.
xaml:
<Window x:Class="Calculadoreta" ResizeMode="NoResize" xmlns:telerik="http://schemas.telerik.com/2008/xaml/presentation" KeyDown="Window_KeyDown" Title="Calculadora" Height="350" Width="443"><Grid x:Name="Calculadora"> <Grid.Background> <LinearGradientBrush EndPoint="0.985,0.415" StartPoint="0.053,0.415"> <GradientStop Color="#FF99B4D1" Offset="0"/> <GradientStop Color="White" Offset="1"/> </LinearGradientBrush> </Grid.Background> <Grid.ColumnDefinitions> <ColumnDefinition Width="*"/> <ColumnDefinition Width="*"/> </Grid.ColumnDefinitions> <Grid.RowDefinitions> <RowDefinition Height="*"/> <RowDefinition Height="*"/> <RowDefinition Height="*"/> </Grid.RowDefinitions> <telerik:RadCalculator Grid.RowSpan="3" Grid.ColumnSpan="2" Margin="115,25,117,29"/></Grid></Window>code-behind:
Public Class Calculadoreta Private Sub Window_KeyDown(sender As Object, e As KeyEventArgs) If Key.Escape Then Me.DialogResult = True Me.Close() End If End SubEnd ClassSometimes I can see this error:
"Error argument 9 NullReferenceException: Referencia a objeto no establecida como instancia de un objeto.
"Reference not established like object instance"
Thanks in advance,