1234567891011121314151617181920212223242526272829 |
- <Window x:Class="WpfApp1.Window1"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:local="clr-namespace:WpfApp1"
- mc:Ignorable="d"
- Title="InfoWindow" Height="300" Width="300">
- <Grid>
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="64"/>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="auto"/>
- </Grid.ColumnDefinitions>
- <Image Width="59" Height="64" Source="{Binding ImageBitmap}"/>
- <StackPanel Grid.Column="1" Orientation="Vertical" Margin="20,2,0,5">
- <TextBlock Text="{Binding name}"/>
- <TextBlock Text="{Binding year}"/>
- <TextBlock Text="{Binding price}"/>
- <TextBlock Text="{Binding color}"/>
- <TextBlock Text="{Binding defects}"/>
- <TextBlock Text="{Binding dateOfLastSTO}"/>
- </StackPanel>
- <TextBlock Grid.Column="2" Text="{Binding year}" Margin="0,2,10,0"/>
- <Button IsCancel="True" Click="ExitButton_Click" Margin="40,200,40,40" Grid.Column="1">OK</Button>
- </Grid>
- </Window>
|