mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
37 lines
1.2 KiB
Plaintext
37 lines
1.2 KiB
Plaintext
|
<UserControl
|
||
|
x:Class="DrumKit.FileControl"
|
||
|
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
|
||
|
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
|
||
|
xmlns:local="using:DrumKit"
|
||
|
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
|
||
|
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
|
||
|
mc:Ignorable="d"
|
||
|
d:DesignHeight="120"
|
||
|
d:DesignWidth="400">
|
||
|
|
||
|
<Grid>
|
||
|
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="Auto"/>
|
||
|
<RowDefinition />
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition />
|
||
|
<ColumnDefinition Width="Auto" />
|
||
|
</Grid.ColumnDefinitions>
|
||
|
|
||
|
<TextBlock Name="textName" Style="{StaticResource TitleTextStyle}"
|
||
|
VerticalAlignment="Center"
|
||
|
Margin="0,0,0,8">Test</TextBlock>
|
||
|
|
||
|
<Image Grid.Row="1" Name="image"
|
||
|
VerticalAlignment="Stretch"
|
||
|
HorizontalAlignment="Left" Width="120"/>
|
||
|
|
||
|
<Button Name="buttonBrowse" Style="{StaticResource TextButtonStyle}"
|
||
|
Grid.Column="1" Margin="10,5,10,5">...</Button>
|
||
|
|
||
|
</Grid>
|
||
|
</UserControl>
|