1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
| <UserControl x:Class="TestSilverlight.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:TestSilverlight"
xmlns:data="clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Data"
xmlns:vsm="clr-namespace:System.Windows;assembly=System.Windows"
Width="800" Height="600">
<Grid x:Name="LayoutRoot" Background="White">
<Button x:Name="bt" Content="Button" Width="180" Height="40">
<ToolTipService.ToolTip>
<StackPanel Orientation="Horizontal">
<Path Height="11" HorizontalAlignment="Left" VerticalAlignment="Top" Width="8.412" RenderTransformOrigin="0.5,0.5" Fill="#FF000000" Stretch="Fill" Data="M164,49 L164,65 L176,57 z" Margin="0,2,4,0" />
<TextBlock Text="Message d'aide" />
</StackPanel>
</ToolTipService.ToolTip>
</Button>
</Grid>
</UserControl> |
Partager