|
|
|
@ -8,7 +8,36 @@
|
|
|
|
|
d:DesignHeight="450" d:DesignWidth="800"
|
|
|
|
|
Style="{StaticResource ImageFondRessource}">
|
|
|
|
|
<DockPanel>
|
|
|
|
|
<Button Click="Button_Click_Ajouter_Echeance" Style="{StaticResource GreenButtonRessource}" Content="Enregistrer une échéance" Margin="45,0,0,0"/>
|
|
|
|
|
<Button Click="Button_Click_Supprimer_Echeance" Style="{StaticResource GreenButtonRessource}" Content="Supprimer une échéance" Margin="45,0,0,0"/>
|
|
|
|
|
<TextBlock Style="{StaticResource TitreDePage}" >Echeancier</TextBlock>
|
|
|
|
|
|
|
|
|
|
<WrapPanel DockPanel.Dock="Bottom" HorizontalAlignment="Center">
|
|
|
|
|
<Border Style="{StaticResource BorderRessource}" Background="BlueViolet">
|
|
|
|
|
<TextBlock DockPanel.Dock="Bottom" Text="Total" TextAlignment="Center" VerticalAlignment="Center"/>
|
|
|
|
|
</Border>
|
|
|
|
|
<Border Style="{StaticResource BorderRessource}" Background="BlueViolet">
|
|
|
|
|
<TextBlock DockPanel.Dock="Bottom" Text="???" TextAlignment="Center" VerticalAlignment="Center"/>
|
|
|
|
|
</Border>
|
|
|
|
|
</WrapPanel>
|
|
|
|
|
|
|
|
|
|
<StackPanel Orientation="Vertical" HorizontalAlignment="Center">
|
|
|
|
|
<WrapPanel HorizontalAlignment="Center">
|
|
|
|
|
<Button Click="Button_Click_Ajouter_Echeance" Style="{StaticResource GreenButtonRessource}" Content="Enregistrer une échéance"/>
|
|
|
|
|
<Button Click="Button_Click_Supprimer_Echeance" Style="{StaticResource GreenButtonRessource}" Content="Supprimer une échéance"/>
|
|
|
|
|
</WrapPanel>
|
|
|
|
|
<WrapPanel HorizontalAlignment="Center">
|
|
|
|
|
<WrapPanel.Resources>
|
|
|
|
|
<Style TargetType="{x:Type TextBlock}">
|
|
|
|
|
<Setter Property="Margin" Value="60,10,30,0"/>
|
|
|
|
|
</Style>
|
|
|
|
|
</WrapPanel.Resources>
|
|
|
|
|
<TextBlock Text="Nom"/>
|
|
|
|
|
<TextBlock Text="Date"/>
|
|
|
|
|
<TextBlock Text="Paiement"/>
|
|
|
|
|
<TextBlock Text="Type"/>
|
|
|
|
|
<TextBlock Text="Crédit"/>
|
|
|
|
|
<TextBlock Text="Débit"/>
|
|
|
|
|
</WrapPanel>
|
|
|
|
|
</StackPanel>
|
|
|
|
|
|
|
|
|
|
</DockPanel>
|
|
|
|
|
</UserControl>
|
|
|
|
|