mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
39 lines
1.6 KiB
XML
39 lines
1.6 KiB
XML
<Page
|
|
x:Class="DrumKit.LogPage"
|
|
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">
|
|
|
|
<Grid Background="{StaticResource ApplicationBackgroundColor}">
|
|
<Grid.ColumnDefinitions>
|
|
<ColumnDefinition Width="*"/>
|
|
<ColumnDefinition Width="2.5*"/>
|
|
</Grid.ColumnDefinitions>
|
|
|
|
<ListView x:ConnectionId='1' Name="logEntriesList" Grid.Column="0" Margin="5"
|
|
Background="#2FFF"
|
|
/>
|
|
|
|
<Rectangle Name="logTextPlaceholder" Grid.Column="1" Margin="0,5,5,5" />
|
|
<WebView Name="logText" Grid.Column="1" Margin="0,5,5,5"/>
|
|
|
|
</Grid>
|
|
|
|
<Page.BottomAppBar>
|
|
<AppBar x:ConnectionId='2' >
|
|
<StackPanel Orientation="Horizontal">
|
|
<Button x:ConnectionId='3' Style="{StaticResource SaveAppBarButtonStyle}"
|
|
AutomationProperties.Name="Save as"
|
|
/>
|
|
<Button x:ConnectionId='4' Style="{StaticResource DeleteAppBarButtonStyle}"
|
|
AutomationProperties.Name="Clear logs"
|
|
/>
|
|
</StackPanel>
|
|
</AppBar>
|
|
</Page.BottomAppBar>
|
|
</Page>
|
|
|