or
at System.Windows.Window.VerifyNotClosing()at System.Windows.Window.InternalClose(Boolean shutdown, Boolean ignoreCancel)at System.Windows.Window.Close()at Telerik.Windows.Controls.InternalWindow.WindowWithNoChromeWindowHost.Close() in c:\TB\102\WPF_Scrum\Release_WPF\Sources\Development\Controls\Navigation\Window\InternalWindow\WindowWithNoChromeWindowHost.cs:line 54at Telerik.Windows.Controls.WindowBase.CloseHostImidiately() in c:\TB\102\WPF_Scrum\Release_WPF\Sources\Development\Controls\Navigation\Window\WindowBase.cs:line 1333at Telerik.Windows.Controls.WindowBase.OnCloseAnimationFinished() in c:\TB\102\WPF_Scrum\Release_WPF\Sources\Development\Controls\Navigation\Window\WindowBase.cs:line 1025at Telerik.Windows.Controls.WindowBase.PlayCloseAnimation() in c:\TB\102\WPF_Scrum\Release_WPF\Sources\Development\Controls\Navigation\Window\WindowBase.cs:line 1318at Telerik.Windows.Controls.WindowBase.TryClose(Boolean shouldCloseHost) in c:\TB\102\WPF_Scrum\Release_WPF\Sources\Development\Controls\Navigation\Window\WindowBase.cs:line 719at Telerik.Windows.Controls.WindowBase.Telerik.Windows.Controls.InternalWindow.IWindowDragAware.TryClose(Boolean shouldCloseHost) in c:\TB\102\WPF_Scrum\Release_WPF\Sources\Development\Controls\Navigation\Window\WindowBase.cs:line 612at Telerik.Windows.Controls.InternalWindow.WindowWithNoChromeWindowHost.OnWindowClosing(Object sender, CancelEventArgs e) in c:\TB\102\WPF_Scrum\Release_WPF\Sources\Development\Controls\Navigation\Window\InternalWindow\WindowWithNoChromeWindowHost.cs:line 277at System.Windows.Window.OnClosing(CancelEventArgs e)at System.Windows.Window.InternalClose(Boolean shutdown, Boolean ignoreCancel)/// <summary>/// Gets the exit command./// </summary>public ICommand ExitCommand{ get { return new DelegateCommand(() => { // If we can close, do so... if (this.CanClose) { Application.Current.Shutdown(); } }); }}<Telerik:RadTreeView IsLineEnabled="True" FontWeight="Normal"> <Telerik:RadTreeViewItem Header="1111" IsExpanded="True" IsEditable="True"> <Telerik:RadTreeViewItem Header="22222222222" IsSelected="True" IsEditable="True" > </Telerik:RadTreeViewItem> <Telerik:RadTreeViewItem Header="33333333333"> </Telerik:RadTreeViewItem> <Telerik:RadTreeViewItem Header="44444444444"> </Telerik:RadTreeViewItem> </Telerik:RadTreeViewItem> </Telerik:RadTreeView><UserControl.Resources> <DataTemplate x:Key="childrenDocument"> <StackPanel Orientation="Horizontal"> <Image Width="24" Height="24" Source="/Fujitsu.iDM.View.Impl;component/Icons/128/image-folder.png"></Image> <TextBlock Text="{Binding Name, Mode=TwoWay}" /> </StackPanel> </DataTemplate> <HierarchicalDataTemplate x:Key="rootDocument" ItemsSource="{Binding Mode=TwoWay, Path=ChildrenDocuments}" ItemTemplate="{StaticResource childrenDocument}"> <StackPanel Orientation="Horizontal"> <TextBlock Text="{Binding Name, Mode=TwoWay}"/> </StackPanel> </HierarchicalDataTemplate> <Style x:Key="treeViewItemStyle" TargetType="telerik:RadTreeViewItem"> <Setter Property="IsInEditMode" Value="{Binding IsInEditMode, Mode=TwoWay}" /> <Setter Property="IsSelected" Value="{Binding IsSelected}" /> <Setter Property="IsExpanded" Value="true" /> </Style></UserControl.Resources><StackPanel> <telerik:RadTreeView x:Name="radTreeNav" PreviewSelectionChanged="RadTreeView_PreviewSelectionChanged" IsEditable="true" FontWeight="Normal" SelectedItem="{Binding NavBarSelectedDocument, Mode=OneWayToSource}" ItemContainerStyle="{StaticResource treeViewItemStyle}" IsLineEnabled="True" ItemTemplate="{StaticResource rootDocument}" ItemsSource="{Binding RootDocuments}" > <telerik:RadTreeView.ItemEditTemplate> <DataTemplate> <StackPanel Orientation="Horizontal"> <Image Width="24" Height="24" Source="/Fujitsu.iDM.View.Impl;component/Icons/128/image-folder.png"></Image> <TextBox Text="{Binding Path=Name, Mode=TwoWay}"/> </StackPanel> </DataTemplate> </telerik:RadTreeView.ItemEditTemplate> </telerik:RadTreeView></StackPanel>BitmapLineRenderer.RenderCore()in Telerik.Windows.Controls.ChartView.
<t:RadGridView Grid.Row="2" Style="{StaticResource OverrideDefaultGridViewStyle}" AddingNewDataItem="OnSpecGridViewAddingNewDataItem" ItemsSource="{Binding Specifications, Mode=TwoWay}" x:Name="SpecGridView"> <t:RadGridView.Resources> <DataTemplate x:Key="DraggedItemTemplate"> <StackPanel> <StackPanel Orientation="Horizontal"> <TextBlock Text="{x:Static p:Resources.AddStandardWindow_TextBlock_Dragging}" /> <TextBlock Text="{Binding CurrentDraggedItem.SpecificationName}" FontWeight="Bold" /> </StackPanel> <StackPanel Orientation="Horizontal"> <TextBlock Text="{Binding CurrentDropPosition}" FontWeight="Bold" MinWidth="45" Foreground="Gray"/> <TextBlock Text=", (" Foreground="Gray" /> <TextBlock Text="{Binding CurrentDraggedOverItem.SpecificationName}" Foreground="Gray" /> <TextBlock Text=")" Foreground="Gray" /> </StackPanel> </StackPanel> </DataTemplate> </t:RadGridView.Resources> <t:RadGridView.Columns> <t:GridViewColumn> <t:GridViewColumn.CellTemplate> <DataTemplate> <t:RadButton Content="X" Click="OnDeleteSpecificationButtonClicked" Style="{StaticResource ButtonCustomStyleRed}" /> </DataTemplate> </t:GridViewColumn.CellTemplate> </t:GridViewColumn> <t:GridViewColumn Header="{x:Static p:Resources.AddStandardWindow_Specifications}"> <t:GridViewColumn.CellTemplate> <DataTemplate> <TextBox Style="{StaticResource OverrideDefaultTextBoxStyle}" Text="{Binding SpecificationName}"/> </DataTemplate> </t:GridViewColumn.CellTemplate> </t:GridViewColumn> <t:GridViewColumn Header="{x:Static p:Resources.AddStandardWindow_Parameter}" Width="20*"> <t:GridViewColumn.CellTemplate> <DataTemplate> <t:RadComboBox Style="{StaticResource ComboBoxStyle}" ItemsSource="{Binding RelativeSource={RelativeSource FindAncestor,AncestorType={x:Type t:RadWindow}}, Path=DataContext.Parameters}" SelectedItem="{Binding Parameter}" DisplayMemberPath="ParameterName" /> </DataTemplate> </t:GridViewColumn.CellTemplate> </t:GridViewColumn> <t:GridViewColumn Header="{x:Static p:Resources.AddStandardWindow_Nominal}" Width="20*"> <t:GridViewColumn.CellTemplate> <DataTemplate> <TextBox Style="{StaticResource OverrideDefaultTextBoxStyle}" KeyDown="OnKeyDown" Text="{Binding Nominal, NotifyOnSourceUpdated=True, UpdateSourceTrigger=PropertyChanged}" SourceUpdated="OnNominalOrAccuracySourceUpdated"> </TextBox> </DataTemplate> </t:GridViewColumn.CellTemplate> </t:GridViewColumn> <t:GridViewColumn Header="{x:Static p:Resources.AddStandardWindow_Accuracy}" Width="10*" Background="#D8E5F0"> <t:GridViewColumn.CellTemplate> <DataTemplate> <TextBox Style="{StaticResource OverrideDefaultTextBoxStyle}" KeyDown="OnKeyDown" Text="{Binding Accuracy, NotifyOnSourceUpdated=True, UpdateSourceTrigger=PropertyChanged}" SourceUpdated="OnNominalOrAccuracySourceUpdated" /> </DataTemplate> </t:GridViewColumn.CellTemplate> </t:GridViewColumn> <t:GridViewColumn Header="{x:Static p:Resources.AddStandardWindow_Precision}" Width="10*" Background="#D8E5F0"> <t:GridViewColumn.CellTemplate> <DataTemplate> <TextBox KeyDown="OnKeyDown" Text="{Binding Presition, NotifyOnSourceUpdated=True, UpdateSourceTrigger=PropertyChanged}" Style="{StaticResource OverrideDefaultTextBoxStyle}"> </TextBox> </DataTemplate> </t:GridViewColumn.CellTemplate> </t:GridViewColumn> <t:GridViewColumn Header="{x:Static p:Resources.AddStandardWindow_Min}" Width="10*"> <t:GridViewColumn.CellTemplate> <DataTemplate> <TextBox Style="{StaticResource OverrideDefaultTextBoxStyle}" KeyDown="OnKeyDown" Text="{Binding Minimum, NotifyOnSourceUpdated=True, UpdateSourceTrigger=PropertyChanged}" SourceUpdated="OnMinOrMaxSourceUpdated"> </TextBox> </DataTemplate> </t:GridViewColumn.CellTemplate> </t:GridViewColumn> <t:GridViewColumn Header="{x:Static p:Resources.AddStandardWindow_Max}" Width="10*"> <t:GridViewColumn.CellTemplate> <DataTemplate> <TextBox Style="{StaticResource OverrideDefaultTextBoxStyle}" KeyDown="OnKeyDown" Text="{Binding Maximum, NotifyOnSourceUpdated=True, UpdateSourceTrigger=PropertyChanged}" SourceUpdated="OnMinOrMaxSourceUpdated"> </TextBox> </DataTemplate> </t:GridViewColumn.CellTemplate> </t:GridViewColumn> <t:GridViewColumn Width="40"> <t:GridViewColumn.CellTemplate> <DataTemplate> <Image Source="/Images/UpDown.png" Height="34" Width="34" Stretch="None"/> </DataTemplate> </t:GridViewColumn.CellTemplate> </t:GridViewColumn> </t:RadGridView.Columns> </t:RadGridView>