12345678910111213141516171819202122 |
- <UserControl x:Class="HistoryView.Controls.FileSelector.FileHorizontal"
- xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
- xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
- xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
- xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
- xmlns:local="clr-namespace:HistoryView.Controls.FileSelector"
- mc:Ignorable="d"
- x:Name="This"
- d:DesignHeight="450" d:DesignWidth="800">
- <Border >
- <Grid Margin="8">
- <Grid.ColumnDefinitions>
- <ColumnDefinition Width="auto"/>
- <ColumnDefinition Width="8"/>
- <ColumnDefinition/>
- </Grid.ColumnDefinitions>
- <Image Source="{Binding ElementName=This, Path=ImageSource}"/>
- <TextBlock Grid.Column="2" VerticalAlignment="Center" HorizontalAlignment="Left" Text="{Binding ElementName=This, Path=FileName}"/>
- </Grid>
- </Border>
- </UserControl>
|