mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
39 lines
1.4 KiB
XML
39 lines
1.4 KiB
XML
<UserControl
|
|
x:Class="DrumKit.LogControl"
|
|
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="300"
|
|
d:DesignWidth="400">
|
|
|
|
<Grid>
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="2.5*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<Grid.RowDefinitions>
|
|
<RowDefinition />
|
|
<RowDefinition Height="Auto" />
|
|
</Grid.RowDefinitions>
|
|
|
|
<ListView x:ConnectionId='1' Name="logEntriesList" Grid.Column="0" Margin="5"
|
|
Background="#3FFF"
|
|
/>
|
|
|
|
<Rectangle Name="logTextPlaceholder" Grid.Column="1" Margin="0,5,5,5" />
|
|
<WebView Name="logText" Grid.Column="1" Margin="0,5,5,5"/>
|
|
|
|
<StackPanel Grid.Row="1" Grid.ColumnSpan="5" Orientation="Horizontal">
|
|
<Button x:ConnectionId='2' Style="{StaticResource MyButtonStyle}" >Save as</Button>
|
|
<Button x:ConnectionId='3' Style="{StaticResource MyButtonStyle}" >Delete all</Button>
|
|
</StackPanel>
|
|
|
|
</Grid>
|
|
|
|
</UserControl>
|
|
|