Ajout de l'UC Modification du Solde
continuous-integration/drone/push Build is passing Details

Navigator
Raphael LACOTE 2 years ago
parent c2cc13b477
commit 282ce37df5

@ -11,10 +11,8 @@
<DockPanel>
<StackPanel DockPanel.Dock="Top">
<TextBlock Style="{StaticResource TitreDePage}" >Compte</TextBlock>
<!--<Border BorderBrush="Black" BorderThickness="2" CornerRadius="60">-->
<StackPanel DockPanel.Dock="Left" Orientation="Horizontal" HorizontalAlignment="Center">
<Button Style="{StaticResource GreenButtonRessource}" Height="25" Width="150" Margin="20">
<TextBlock Text="Ajouter une banque" Style="{StaticResource TextBlockRessource}"/>
@ -29,7 +27,7 @@
<TextBlock Text="Supprimer un compte" Style="{StaticResource TextBlockRessource}"/>
</Button>
</StackPanel>
<!--</Border>-->
</StackPanel>
<Button DockPanel.Dock="Bottom" Style="{StaticResource GreenButtonRessource}" Height="25" Width="170" Margin="20">

@ -0,0 +1,37 @@
<UserControl x:Class="IHM.ModifSolde"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:local="clr-namespace:IHM"
mc:Ignorable="d"
d:DesignHeight="450" d:DesignWidth="800"
Style="{StaticResource ImageFondRessource}">
<DockPanel>
<TextBlock DockPanel.Dock="Top" Style="{StaticResource TitreDePage}" >Modification de votre solde</TextBlock>
<StackPanel DockPanel.Dock="Bottom" Orientation="Horizontal" Margin="10">
<Button Style="{StaticResource GreenButtonRessource}" Height="25" Width="170">
<TextBlock Text="Retour" Style="{StaticResource TextBlockRessource}"/>
</Button>
<Button DockPanel.Dock="Bottom" Style="{StaticResource GreenButtonRessource}" Height="25" Width="170" Margin="150,0,0,0">
<TextBlock Text="Confirmer" Style="{StaticResource TextBlockRessource}"/>
</Button>
</StackPanel>
<StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
<TextBlock Margin="50" Height="25" Width="80">Nouveau solde</TextBlock>
<TextBox Margin="50" Height="25" Width="170">
<TextBox.Resources>
<Style TargetType="{x:Type Border}">
<Setter Property="CornerRadius" Value="5"/>
</Style>
</TextBox.Resources>
</TextBox>
</StackPanel>
</DockPanel>
</UserControl>

@ -0,0 +1,28 @@
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace IHM
{
/// <summary>
/// Logique d'interaction pour Page1.xaml
/// </summary>
public partial class ModifSolde : UserControl
{
public ModifSolde()
{
InitializeComponent();
}
}
}
Loading…
Cancel
Save