Mathilde JEAN 3 years ago
commit 015db2289a

@ -5,7 +5,7 @@
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006" xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:WpfApp1" xmlns:local="clr-namespace:WpfApp1"
mc:Ignorable="d" mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800"> Title="MainWindow" Height="550" Width="1000">
<DockPanel> <DockPanel>
<DockPanel> <DockPanel>

@ -25,14 +25,12 @@ namespace WpfApp1
InitializeComponent(); InitializeComponent();
} }
private void ProgressBar_ValueChanged(object sender, RoutedPropertyChangedEventArgs<double> e)
{
}
private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e) private void ComboBox_SelectionChanged(object sender, SelectionChangedEventArgs e)
{ {
if (Tous.IsSelected)
{
}
} }
public void ContentControlSwapDes() public void ContentControlSwapDes()

@ -17,7 +17,7 @@
</Grid> </Grid>
</DockPanel> </DockPanel>
<DockPanel> <DockPanel>
<Image Source="Images\cartemaismieuxman.png"/> <Image Source="Images\cartemaismieuxman.png" x:Name="laCarte"/>
</DockPanel> </DockPanel>
</DockPanel> </DockPanel>

@ -24,5 +24,13 @@ namespace WpfApp1
{ {
InitializeComponent(); InitializeComponent();
} }
public string Carte
{
set
{
laCarte.Source = new BitmapImage(new Uri(value, UriKind.Relative));
}
}
} }
} }

Loading…
Cancel
Save