mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
34 lines
1.1 KiB
Plaintext
34 lines
1.1 KiB
Plaintext
|
<Page
|
||
|
x:Class="DrumKit.EditorPage"
|
||
|
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">
|
||
|
|
||
|
<Page.Resources>
|
||
|
<ImageBrush x:Key="EditorBackgroundBrush" ImageSource="ms-appx:///Assets/bg.png" Stretch="UniformToFill" />
|
||
|
|
||
|
</Page.Resources>
|
||
|
|
||
|
<Canvas
|
||
|
Name="container"
|
||
|
Background="{StaticResource EditorBackgroundBrush}">
|
||
|
|
||
|
<Button Name="buttonBack" Canvas.Left="10" Canvas.Top="10" Canvas.ZIndex="1"
|
||
|
Style="{StaticResource BackButtonStyle}"
|
||
|
Click="buttonBack_Click" />
|
||
|
|
||
|
</Canvas>
|
||
|
|
||
|
<!--<Page.BottomAppBar>
|
||
|
<AppBar>
|
||
|
<StackPanel Orientation="Horizontal">
|
||
|
<Button>Change order</Button>
|
||
|
<Button>Bring all drums into view</Button>
|
||
|
</StackPanel>
|
||
|
</AppBar>
|
||
|
</Page.BottomAppBar>-->
|
||
|
|
||
|
</Page>
|