Architect's Log

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

ViewBoxでスペースにフィットするようにコンテンツを伸縮させる

アプリ実行

起動


サイズ変更


ソースコード

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">
    <Viewbox Stretch="Uniform" StretchDirection="Both">
        <TextBlock>Hello World</TextBlock>
    </Viewbox>
</Window>

参考

Viewbox クラス (System.Windows.Controls)
伸縮およびスケーリングを実行して単一の子を使用可能な領域全体に引き伸ばすことができるコンテンツ デコレータを定義します。 ...