1234567891011121314151617181920212223 |
- <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="SingleBorderWindow"
- 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>
- <DataGrid AutoGenerateColumns="False" Margin="0" Padding="0" ItemsSource="{Binding Errors,Converter={StaticResource errItemDisplayConverter}}" >
- <DataGrid.Columns>
- <DataGridTextColumn Header="Error Items" Width="450" IsReadOnly="True" Binding="{Binding}" />
- </DataGrid.Columns>
- </DataGrid>
- </Grid>
- </Window>
|