1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16
| <Grid x:Name="LayoutRoot">
<ScrollViewer x:Name="PageScrollViewer" Style="{StaticResource PageScrollViewerStyle}" MouseWheel="PageScrollViewer_MouseWheel">
<StackPanel Margin="0,0,0,0">
<StackPanel>
<controlsToolkit:BusyIndicator IsBusy="{Binding}" DisplayAfter="0" VerticalAlignment="Center" HorizontalAlignment="Center" ></controlsToolkit:BusyIndicator>
</StackPanel>
<StackPanel>
<TextBlock x:Name="texteErreur" Foreground="Red" HorizontalAlignment="Center" VerticalAlignment="Center" ></TextBlock>
</StackPanel>
<StackPanel Orientation="Horizontal" Margin="0,5,0,0">
<StackPanel>
<StackPanel>
<TextBlock Text="Selectionnez un indicateur : " FontWeight="bold"></TextBlock>
<ListBox x:Name="listeChoix" SelectionMode="Single" MaxHeight="100" ></ListBox>
...etc...
...etc... |
Partager