mirror of
https://github.com/chibicitiberiu/drumkit.git
synced 2024-02-24 10:53:32 +00:00
99 lines
4.0 KiB
Plaintext
99 lines
4.0 KiB
Plaintext
|
<UserControl
|
||
|
x:Class="DrumKit.LayoutsSettingsControl"
|
||
|
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">
|
||
|
|
||
|
<UserControl.Resources>
|
||
|
<ResourceDictionary>
|
||
|
|
||
|
<DataTemplate x:Key="DrumkitListDataTemplate">
|
||
|
<Grid Name="theGrid">
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition Height="Auto" />
|
||
|
<RowDefinition />
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition Width="Auto"/>
|
||
|
<ColumnDefinition />
|
||
|
</Grid.ColumnDefinitions>
|
||
|
|
||
|
<!-- Left thing -->
|
||
|
<Border Name="greenBorder"
|
||
|
Grid.Column="0" Grid.RowSpan="3"
|
||
|
Background="GreenYellow" Width="10" />
|
||
|
|
||
|
<!-- Name -->
|
||
|
<TextBox x:ConnectionId='1' Grid.Column="1" Grid.Row="0" Margin="15,2,15,0"
|
||
|
FontSize="15.3"
|
||
|
Style="{StaticResource MyTextBoxStyle}"
|
||
|
Text="{Binding Name}"
|
||
|
/>
|
||
|
|
||
|
<!-- Description -->
|
||
|
<StackPanel Grid.Column="1" Grid.ColumnSpan="2" Grid.Row="1" Margin="15,0,15,2"
|
||
|
Orientation="Horizontal">
|
||
|
<ToggleButton x:ConnectionId='2' Name="toggleLandscape" >Landscape</ToggleButton>
|
||
|
<ToggleButton x:ConnectionId='3' Name="togglePortrait" >Portrait</ToggleButton>
|
||
|
<ToggleButton x:ConnectionId='4' Name="toggleFilled" >Filled</ToggleButton>
|
||
|
<ToggleButton x:ConnectionId='5' Name="toggleSnapped" >Snapped</ToggleButton>
|
||
|
</StackPanel>
|
||
|
|
||
|
</Grid>
|
||
|
|
||
|
</DataTemplate>
|
||
|
|
||
|
<Style x:Key="ListViewStretchItemStyle" TargetType="ListViewItem">
|
||
|
<Setter Property="HorizontalContentAlignment" Value="Stretch" />
|
||
|
</Style>
|
||
|
|
||
|
</ResourceDictionary>
|
||
|
|
||
|
</UserControl.Resources>
|
||
|
|
||
|
<Grid>
|
||
|
<Grid.RowDefinitions>
|
||
|
<RowDefinition />
|
||
|
<RowDefinition Height="Auto" />
|
||
|
</Grid.RowDefinitions>
|
||
|
|
||
|
<Grid.ColumnDefinitions>
|
||
|
<ColumnDefinition />
|
||
|
</Grid.ColumnDefinitions>
|
||
|
|
||
|
<!-- Drumkit list -->
|
||
|
<ListView Name="listLayouts"
|
||
|
Grid.Row="0" Grid.Column="0"
|
||
|
ItemTemplate="{StaticResource DrumkitListDataTemplate}"
|
||
|
ItemContainerStyle="{StaticResource ListViewStretchItemStyle}"
|
||
|
SelectionMode="Single" >
|
||
|
|
||
|
<local:DrumkitLayout IsDefault="True" Name="Hello world" TargetViewSerialize="All" />
|
||
|
|
||
|
<TextBlock>Hello world!</TextBlock>
|
||
|
|
||
|
</ListView>
|
||
|
|
||
|
<ProgressRing
|
||
|
Name="progressRing"
|
||
|
Foreground="White"
|
||
|
Width="50" Height="50" />
|
||
|
|
||
|
<!-- Buttons -->
|
||
|
<StackPanel Grid.Row="1" Grid.ColumnSpan="2" Orientation="Horizontal">
|
||
|
<Button x:ConnectionId='6' Style="{StaticResource MyButtonStyle}" >Create</Button>
|
||
|
<Button x:ConnectionId='7' Style="{StaticResource MyButtonStyle}" >Edit</Button>
|
||
|
<Button x:ConnectionId='8' Style="{StaticResource MyButtonStyle}" >Delete</Button>
|
||
|
<Button x:ConnectionId='9' Style="{StaticResource MyButtonStyle}" >Toggle active</Button>
|
||
|
</StackPanel>
|
||
|
|
||
|
</Grid>
|
||
|
</UserControl>
|
||
|
|