drumkit-old/DrumKit/bin/Debug/UI/LogPage.xaml

39 lines
1.6 KiB
Plaintext
Raw Normal View History

2013-11-18 18:11:53 +00:00
<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>