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