Architect's Log

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

UniformGridでグリッドレイアウトを実装する

UniformGridは基本的な機能しか提供しないので、Gridよりもパフォーマンス面で有利です。(2011/03/14追記)

アプリ実行


ソースコード

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="WpfApplication4.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="300" Width="500">
    <UniformGrid Columns="2" Rows="3">
        <Ellipse Fill="Aqua" />
        <Ellipse Fill="Aqua" />
        <Ellipse Fill="Aqua" />
        <Ellipse Fill="Aqua" />
        <Ellipse Fill="Aqua" />
        <Ellipse Fill="Aqua" />
    </UniformGrid>
</Window>