|
| 1 | +<App Background="#000"> |
| 2 | + <iOS.StatusBarConfig Style="Light" /> |
| 3 | + |
| 4 | + <WhileWindowLandscape> |
| 5 | + <Change thePad.RowCount="2" /> |
| 6 | + <Change thePad.ColumnCount="4" /> |
| 7 | + </WhileWindowLandscape> |
| 8 | + |
| 9 | + <Panel ux:Class="SoundPad"> |
| 10 | + <string ux:Property="Label" /> |
| 11 | + <FileSource ux:Property="Sample" /> |
| 12 | + <Text Value="{ReadProperty Label}" Alignment="Center" FontSize="16" Color="#111" /> |
| 13 | + <Circle ux:Name="ledIndicator" Alignment="TopLeft" Width="10" Height="10" Color="#555" Margin="10"> |
| 14 | + <Stroke Width="1" Color="#111" /> |
| 15 | + <Circle ux:Name="glow" Width="120%" Height="120" Color="#0099FF" Visibility="Collapsed"> |
| 16 | + <Blur /> |
| 17 | + </Circle> |
| 18 | + </Circle> |
| 19 | + <Rectangle Color="#333" CornerRadius="10"> |
| 20 | + <Stroke Width="1" Color="#111" /> |
| 21 | + <Shadow Color="#555" Angle="115" /> |
| 22 | + </Rectangle> |
| 23 | + <Pressed> |
| 24 | + <PlaySound File="{ReadProperty Sample}" /> |
| 25 | + <Scale Factor="0.98" Duration="0.04" DurationBack="0.08" /> |
| 26 | + <Change ledIndicator.Color="#0099FF" Delay="0" DelayBack="0.12" /> |
| 27 | + <Change glow.Visibility="Visible" Delay="0" DelayBack="0.12" /> |
| 28 | + </Pressed> |
| 29 | + </Panel> |
| 30 | + |
| 31 | + <DockPanel> |
| 32 | + <StatusBarBackground Dock="Top" /> |
| 33 | + <BottomBarBackground IncludesKeyboard="false" Dock="Bottom" /> |
| 34 | + <Panel Dock="Top" Height="56"> |
| 35 | + <Text Alignment="Center" Value="FuseDrums" Color="#0099FF" FontSize="24" /> |
| 36 | + <Rectangle Alignment="Bottom" Height="1" Color="#555" /> |
| 37 | + </Panel> |
| 38 | + |
| 39 | + <Grid ux:Name="thePad" RowCount="4" ColumnCount="2" CellSpacing="8" Margin="8"> |
| 40 | + <SoundPad Label="Kick 1" Sample="Sounds/Kick1.wav" /> |
| 41 | + <SoundPad Label="Kick 2" Sample="Sounds/Kick2.wav" /> |
| 42 | + <SoundPad Label="Snare 1" Sample="Sounds/Snare1.wav" /> |
| 43 | + <SoundPad Label="Snare 2" Sample="Sounds/Snare2.wav" /> |
| 44 | + <SoundPad Label="Snare 3" Sample="Sounds/Snare3.wav" /> |
| 45 | + <SoundPad Label="Perc 1" Sample="Sounds/Perc1.wav" /> |
| 46 | + <SoundPad Label="Perc 2" Sample="Sounds/Perc2.wav" /> |
| 47 | + <SoundPad Label="Perc 3" Sample="Sounds/Perc3.wav" /> |
| 48 | + </Grid> |
| 49 | + |
| 50 | + </DockPanel> |
| 51 | +</App> |
0 commit comments