Architect's Log

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

2011-02-16から1日間の記事一覧

アプリケーション内でトレースデータを出力する

アプリ実行 ソースコード web.config <configuration> <system.web> <compilation debug="true" targetFramework="4.0"/> <trace enabled="true" requestLimit="100" mostRecent="true" pageOutput="true" writeToDiagnosticsTrace="true" localOnly="true"/> </system.web> </configuration> helloworld.aspx <…

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