12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273 |
- <Window x:Class="wpf_listbox.Windows.DetailWindow"
- 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:wpf_listbox.Windows"
- mc:Ignorable="d"
- Title="Экскурсовод" Height="auto" Width="auto">
- <Window.Resources>
- <BitmapImage
- x:Key='defaultImage'
- UriSource='./img/1.webp' />
- <Style
-
- TargetType="Button">
- <Setter
- Property="FontFamily"
- Value="Verdana" />
- <Setter
- Property="Background"
- Value="PapayaWhip" />
- <Setter
- Property="Foreground"
- Value="Peru" />
- <Setter
- Property="Margin"
- Value="10" />
- </Style>
- </Window.Resources>
- <Grid RenderTransformOrigin="0.498,0.573">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="auto"/>
- <ColumnDefinition Width="*"/>
- <ColumnDefinition Width="auto"/>
- </Grid.ColumnDefinitions>
- <StackPanel
- Grid.Column="1">
- <TextBlock Text="Имя:">
- <Run Text="{Binding Name}"/>
- </TextBlock>
- <TextBlock Text="Цена за экскурсию:">
- <Run Text="{Binding Price}"/>
- </TextBlock>
- <TextBlock Text="Место:">
- <Run Text="{Binding Place}"/>
- </TextBlock>
- <TextBlock Text="Пол:">
- <Run Text="{Binding Gender}"/>
- </TextBlock>
-
- <TextBlock Text="В компании с: ">
- <Run Text="{Binding dateOfConnections, StringFormat='dd.MM.yyyy'}"/>
- </TextBlock>
- <TextBlock Text="Является ли фаворитом:">
- <Run Text="{Binding IsFavorite}"/>
- </TextBlock>
- </StackPanel>
- <Button
- x:Name="ExitButton"
- Grid.Column="1"
- Content="Выход"
- Click="ExitButton_Click"
- Height="50" />
- <Image Grid.Column="0" Source="{StaticResource defaultImage}" Width="100" Height="100"/>
- </Grid>
- </Window>
|