2008-06-19から1日間の記事一覧

ToolTipの書き方

C#3.0コードの場合 SL2B1 | WPF var button = new Button { ToolTip = new TextBlock { Text = "メッセージ", }, }; SL2B2 | WPF var button = new Button { }; ToolTipService.SetToolTip(button, new TextBlock { Text = "メッセージ", }); 資料 http://do…