ErrorInformationDetailsView.xaml 819 B

1234567891011121314
  1. <Window x:Class="Aitex.UI.RecipeEditor.ErrorInformationDetailsView"
  2. xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
  4. Title="Error Information" Height="275" Width="479" WindowStyle="ToolWindow"
  5. xmlns:app="clr-namespace:Aitex.UI.RecipeEditor"
  6. Topmost="True" Closing="Window_Closing" WindowStartupLocation="CenterOwner" Background="LightYellow" FontFamily="Arial,SimSun" ResizeMode="NoResize">
  7. <Grid Background="Transparent">
  8. <Grid.Resources>
  9. <app:ErrItemDisplayConverter x:Key="errItemDisplayConverter"/>
  10. </Grid.Resources>
  11. <ListView Background="Transparent" ItemsSource="{Binding Errors,Converter={StaticResource errItemDisplayConverter}}" />
  12. </Grid>
  13. </Window>