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
|
Window x:Class="Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:wf="clr-namespace:System.Windows.Forms;assembly=System.Windows.Forms"
Title="Window Avec Winhost" Height="300" Width="300">
<Grid Height="273" Width="289">
<!-- z-order = 0 plan=0 -->
<Rectangle Height="100" Width="100" Fill="Red" > </Rectangle>
<!-- z-order = 1 par dessus rectangle -->
<TextBlock Height="100" Width="100" FontSize="20">
WPF<LineBreak />
WPF<LineBreak />
WPF
</TextBlock>
<!-- z-order = 2 par dessus texte block-->
<WindowsFormsHost Background="Bisque" Foreground="Black" Margin="89,81">
<wf:Label Text="Windows Forms" Width="100" Height="100" />
</WindowsFormsHost>
<!-- z-order = 3 par dessus winhost-->
<Ellipse Height="100" Width="100" Stroke="Blue" StrokeThickness="4" Fill="Aquamarine"/>
<!-- z-order = 4 pardessus tout-->
<TextBlock FontSize="18" Background="Yellow" Foreground="blue" Margin="94.5,116,94.5,120">
On Top
</TextBlock>
</Grid>
</Window> |
Partager