Architect's Log

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

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

カスタムエラーページを表示する

アプリ実行 内部サーバーエラー ファイルが存在しない その他のエラー ソースコード web.config <configuration> <system.web> <compilation debug="true" targetFramework="4.0"/> <customErrors defaultRedirect="GenericError.htm" mode="On"> <error statusCode="500" redirect="InternalServerError.htm" /> </error></customerrors></compilation></system.web></configuration>

ScrollViewerでスクロール可能にする

アプリ実行 起動 スクロールバーが現れるまで[追加]ボタンでテキストボックスにテキスト追加 ソースコード 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