-
Notifications
You must be signed in to change notification settings - Fork 500
/
Copy pathPage.xaml
27 lines (23 loc) · 938 Bytes
/
Page.xaml
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
<!-- <snippet5> -->
<UserControl x:Class="ToolTipExample.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Width="400" Height="300">
<Canvas x:Name="LayoutRoot" >
<!-- <snippet1> -->
<!-- A button with a simple ToolTip. -->
<Button Content="Button with a simple ToolTip."
ToolTipService.ToolTip="Simple ToolTip" />
<!-- <snippet2> -->
<!-- A TextBlock with an offset ToolTip. -->
<TextBlock Text="TextBlock with an offset ToolTip.">
<ToolTipService.ToolTip>
<ToolTip Content="Offset ToolTip."
HorizontalOffset="20" VerticalOffset="30"/>
</ToolTipService.ToolTip>
</TextBlock>
<!-- </snippet2> -->
<!-- </snippet1> -->
</Canvas>
</UserControl>
<!-- </snippet5> -->