Architect's Log

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

ツールチップを表示する

アプリ実行

起動


マウスオーバー


ソースコード

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="検索する語句を入力してください" />
        <Button Width="100" Height="30">検索</Button>
    </StackPanel>    
</Window>