Bonjour,

J'ai des probleme d'affichage avec la page silverlight suivante :

Code xml : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<navigation:Page x:Class="Formulaire_Silverlight.Views.ChoixCodePrefectoral" 
           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"
           mc:Ignorable="d"
           xmlns:navigation="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Navigation"
           d:DesignWidth="640" d:DesignHeight="550"
           Title="ChoixCodePrefectoral Page" xmlns:sdk="http://schemas.microsoft.com/winfx/2006/xaml/presentation/sdk" xmlns:my="clr-namespace:Formulaire_Silverlight.Controls">
    <Grid x:Name="LayoutRoot">
        <Grid.RowDefinitions>
            <RowDefinition Height="auto" />
            <RowDefinition Height="auto" />
            <RowDefinition Height="auto" />
            <RowDefinition Height="auto" />
            <RowDefinition Height="auto" />
            <RowDefinition Height="auto" />
            <RowDefinition Height="auto" />
            <RowDefinition Height="29" />
        </Grid.RowDefinitions>
        <sdk:Label Height="17" Content="Choix du code Prefectoral" HorizontalAlignment="Left" Margin="213,12,0,0" VerticalAlignment="Top" Width="213" FontSize="14" FontWeight="Bold" />
        <sdk:DataGrid Name="DgOrganismes" AutoGenerateColumns="True" Grid.Row="1" Height="302" HorizontalAlignment="Left" Margin="12,17,0,0" VerticalAlignment="Top" Width="616" AutoGeneratingColumn="dgOrganismes_AutoGeneratingColumn"></sdk:DataGrid>
        <sdk:Label Grid.Row="2" Height="19" Content="Choisisez l'id Feuille à charger" HorizontalAlignment="Left" Margin="213,12,0,0" VerticalAlignment="Top" Width="176" />
        <sdk:Label Grid.Row="3" Height="16" Content="Votre choix :" HorizontalAlignment="Left" Margin="12,15,0,0" VerticalAlignment="Top" Width="81" />
        <sdk:Label Grid.Row="4" Content="Aucun code préfectoral" HorizontalAlignment="Left" Margin="12,15,0,0" Width="131" Foreground="Blue" />
        <Button Grid.Row="5" Height="23" Content="Valider" Name="btnValider"  HorizontalAlignment="Left" Margin="184,9,0,0" VerticalAlignment="Top" Width="75" />
        <Button Grid.Row="5" Height="23" Content="Annuler" Name="btnAnnuler" HorizontalAlignment="Right" Margin="0,9,214,0" VerticalAlignment="Top" Width="75" />
        <my:BusyIndicator Grid.Row="1" Height="170" HorizontalAlignment="Left" Margin="77,82,0,0" x:Name="busyIndicator" VerticalAlignment="Top" Width="467" />
    </Grid>
</navigation:Page>

Le probleme c'est que cette page ne m'affiche pas les deux derniers bouton "btnValider" et "btnAnnuler"
J'ai retourné ce petit probleme tout bête dans tout les sens mais j'ai pas réussi à le ressoudre

Merci de m'apporter votre aide,