Architect's Log

I'm a Cloud Architect. I'm highly motivated to reduce toils with driving DevOps.

ToolTipServiceを使用してツールチップの動作を変更する

アプリ実行

マウスオーバー

テキストボックスの下部にツールチップが表示されます。

ソースコード

App.xaml
<Application x:Class="HelloWorld.App"
             xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
             xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
             StartupUri="MainWindow.xaml">
</Application>
MainWindow.xaml
<Window x:Class="HelloWorld.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="350" Width="525">
    <StackPanel Orientation="Horizontal">
        <TextBox Width="200" Height="30" ToolTip="検索する語句を入力してください" ToolTipService.Placement="Bottom" />
        <Button Width="100" Height="30">検索</Button>
    </StackPanel>    
</Window>

参考

ToolTipService クラス (System.Windows.Controls)
ツール ヒントの表示と動作を制御するためのプロパティ、およびイベントを提供するサービスを表します。