ToolTip 컨트롤 (풍선도움말 제공)
.NET프로그래밍/Silverlight 3.0 2009. 12. 2. 11:57 |[MainPage.xaml]
<UserControl x:Class="RiaToolTip.MainPage"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d"
d:DesignHeight="300" d:DesignWidth="400">
<Grid x:Name="LayoutRoot" Background="White">
<StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock FontSize="14">아이디:</TextBlock>
<TextBox Width="150" ToolTipService.ToolTip="아이디를 입력하시오."/>
</StackPanel>
<StackPanel Orientation="Horizontal">
<TextBlock FontSize="14" Canvas.Left="10" Canvas.Top="40">암호:</TextBlock>
<PasswordBox Width="150" FontSize="14">
<ToolTipService.ToolTip>
<ToolTip HorizontalOffset="10" VerticalOffset="10"
Content="암호를 입력하시오." />
</ToolTipService.ToolTip>
</PasswordBox>
</StackPanel>
<CheckBox FontSize="14" Content="아이디 기억">
<ToolTipService.ToolTip>
<ToolTip>
<Button Content="아이디를 기억하려면 클릭..." Width="200" Height="100" />
</ToolTip>
</ToolTipService.ToolTip>
</CheckBox>
<Button Width="80" FontSize="14" Content="로그인" />
</StackPanel>
</Grid>
</UserControl>
'.NET프로그래밍 > Silverlight 3.0' 카테고리의 다른 글
ScrollBar 컨트롤 (0) | 2009.12.02 |
---|---|
ScrollViewer 컨트롤 (0) | 2009.12.02 |
CheckBox 컨트롤 (0) | 2009.12.02 |
RadioButton 컨트롤 (0) | 2009.12.02 |
RepeatButton 컨트롤 (0) | 2009.12.02 |