24 lines
		
	
	
		
			984 B
		
	
	
	
		
			XML
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			984 B
		
	
	
	
		
			XML
		
	
	
	
	
	
<Window x:Class="JeuHoy_WPF.View.wJeu"
 | 
						|
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
 | 
						|
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
 | 
						|
        xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
 | 
						|
        xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
 | 
						|
        xmlns:local="clr-namespace:JeuHoy_WPF"
 | 
						|
        mc:Ignorable="d"
 | 
						|
        Title="Jeu Hoy" Height="450" Width="800" WindowState="Maximized" ResizeMode="NoResize" WindowStartupLocation="CenterScreen"  Icon="/Resources/téléchargement.jpg">
 | 
						|
   
 | 
						|
    
 | 
						|
    <Grid>
 | 
						|
        <Grid.Background>
 | 
						|
            <ImageBrush ImageSource="/Resources/fondjeu.png"/>
 | 
						|
        </Grid.Background>
 | 
						|
        <Grid.RowDefinitions>
 | 
						|
            <RowDefinition Height="*"/>
 | 
						|
        </Grid.RowDefinitions>
 | 
						|
        <Grid.ColumnDefinitions>
 | 
						|
            <ColumnDefinition Width="*"/>
 | 
						|
            <ColumnDefinition Width="200"/>
 | 
						|
        </Grid.ColumnDefinitions>
 | 
						|
    </Grid>
 | 
						|
</Window>
 |