<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
Title="WPF" Height="150" Width="300">
<StackPanel Name="stackPanel1">
<Button Height="23" Margin="10" Name="button1"
ToolTip="A simple textual ToolTip" Width="175">
Button with Simple ToolTip
</Button>
</StackPanel>
</Window>
|