|
|
|
@ -23,7 +23,7 @@
|
|
|
|
|
|
|
|
|
|
<Grid Margin="15">
|
|
|
|
|
<Grid.RowDefinitions>
|
|
|
|
|
<RowDefinition />
|
|
|
|
|
<RowDefinition Height="35"/>
|
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
|
<RowDefinition Height="25"/>
|
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
@ -31,7 +31,7 @@
|
|
|
|
|
<RowDefinition Height="70"/>
|
|
|
|
|
</Grid.RowDefinitions>
|
|
|
|
|
<Grid.ColumnDefinitions>
|
|
|
|
|
<ColumnDefinition Width="125"/>
|
|
|
|
|
<ColumnDefinition Width="130"/>
|
|
|
|
|
<ColumnDefinition />
|
|
|
|
|
</Grid.ColumnDefinitions>
|
|
|
|
|
<Button Grid.Row="1" Grid.Column="0"
|
|
|
|
@ -50,26 +50,48 @@
|
|
|
|
|
Clicked="Stop_Music"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
<Border Grid.Row="3" Grid.Column="1" WidthRequest="75"
|
|
|
|
|
HeightRequest="75" HorizontalOptions="Start" Stroke="#6600FF" BackgroundColor="#6600FF">
|
|
|
|
|
<Border Grid.Row="1" Grid.Column="1" WidthRequest="75"
|
|
|
|
|
HeightRequest="75" HorizontalOptions="End" Stroke="#6600FF" BackgroundColor="#6600FF">
|
|
|
|
|
<ImageButton Grid.Row="3" Grid.Column="1" x:Name="favoriButton"
|
|
|
|
|
WidthRequest="75"
|
|
|
|
|
HeightRequest="75"
|
|
|
|
|
HorizontalOptions="Start"
|
|
|
|
|
HorizontalOptions="End"
|
|
|
|
|
Clicked="AddFavoriButton"
|
|
|
|
|
/>
|
|
|
|
|
</Border>
|
|
|
|
|
|
|
|
|
|
<Border Grid.Row="4" Grid.Column="0" WidthRequest="200"
|
|
|
|
|
<Border Grid.Row="2" Grid.Column="0" WidthRequest="200"
|
|
|
|
|
HeightRequest="50" HorizontalOptions="Start" Stroke="#6600FF" BackgroundColor="#6600FF"
|
|
|
|
|
Margin="0,60,0,0">
|
|
|
|
|
<Slider Grid.Row="3" Grid.Column="0"
|
|
|
|
|
<Slider Grid.Row="2" Grid.Column="0"
|
|
|
|
|
x:Name="tempo_slider"
|
|
|
|
|
Minimum="0"
|
|
|
|
|
Maximum="6"
|
|
|
|
|
ValueChanged="TempoSlider" />
|
|
|
|
|
</Border>
|
|
|
|
|
<Label Grid.Row="3" Grid.Column="1" Text="Vitesse musique" WidthRequest="130" HeightRequest="55" HorizontalOptions="End"/>
|
|
|
|
|
<Label Grid.Row="0" Grid.Column="0" Text="Paramètres du son " HorizontalOptions="End"/>
|
|
|
|
|
<Label Grid.Row="0" Grid.Column="1" Text="de la partition :"/>
|
|
|
|
|
<Label Grid.Row="4" Grid.Column="0" Text="Paramètres du" HorizontalOptions="Center" />
|
|
|
|
|
<Label Grid.Row="4" Grid.Column="1" Text="métronome :" HorizontalOptions="Start"/>
|
|
|
|
|
<Button Grid.Row="5" Grid.Column="0"
|
|
|
|
|
Text="Jouer"
|
|
|
|
|
WidthRequest="75"
|
|
|
|
|
HeightRequest="75"
|
|
|
|
|
HorizontalOptions="Start"
|
|
|
|
|
Clicked="Play_Metronome"
|
|
|
|
|
x:Name="play_metronome_button"
|
|
|
|
|
/>
|
|
|
|
|
<Button Grid.Row="5" Grid.Column="1"
|
|
|
|
|
Text="Arrêter"
|
|
|
|
|
WidthRequest="75"
|
|
|
|
|
HeightRequest="75"
|
|
|
|
|
HorizontalOptions="Start"
|
|
|
|
|
Clicked="Stop_Metronome"
|
|
|
|
|
/>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
</Grid>
|
|
|
|
|
</VerticalStackLayout>
|
|
|
|
|