4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

XAMLコンテナメモ

Posted at

環境:Visual Studio 2017 Community

例題:500*500の正方形のウインドウに上下左右に幅50のボタンをつける。

Canvas

説明

左上(上下左右可能)からの相対座標を指定する。

サンプルソース

test.xaml
    <Canvas>
        <Button Content="TOP" Height="50" Width="500" Canvas.Top="0" Canvas.Left="0"/>
        <Button Content="BOTTOM" Height="50" Width="500" Canvas.Bottom="0" Canvas.Left="0"/>
        <Button Content="LEFT" Height="500" Width="50" Canvas.Top="0" Canvas.Left="0"/>
        <Button Content="RIGHT" Height="500" Width="50" Canvas.Top="0" Canvas.Right="0"/>
    </Canvas>

image.png

実行結果

image.png

問題点

ウインドウのリサイズに対応しない。
image.png
image.png
ボタンの階層構造が判別しにくい。

DockPanel

説明

DockPanel.Dockで指定した方向に子要素を張り付ける。(1個だと意味ない、複数の子要素が必要。)

サンプルソース

test.xaml
    <DockPanel>
        <Button Content="TOP" Height="50"  DockPanel.Dock="Top"/>
        <Button Content="BOTTOM" Height="50" DockPanel.Dock="Bottom"/>
        <Button Content="LEFT" Width="50" DockPanel.Dock="Left" />
        <Button Content="RIGHT" Width="50" DockPanel.Dock="Right"/>
        <Button Content="center" Height="50" />
    </DockPanel>

image.png

実行結果

image.png

問題点

ウインドウのリサイズに対応可能だが、使いにくい。
centerのボタンを無くすとレイアウトが崩れる・・・
image.png

Grid

説明

テーブル形式で、行と列の場所を指定する。

サンプルソース

test.xaml
    <Grid>
        <Grid.ColumnDefinitions>
            <ColumnDefinition Width="50"/>
            <ColumnDefinition Width="*" />
            <ColumnDefinition Width="50" />
        </Grid.ColumnDefinitions>
        <Grid.RowDefinitions>
            <RowDefinition Height="50"/>
            <RowDefinition Height="*"/>
            <RowDefinition Height="50"/>
        </Grid.RowDefinitions>
        <Button Content="TOP" Grid.Row="0" Grid.ColumnSpan="3"/>
        <Button Content="BOTTOM" Grid.Row="2" Grid.ColumnSpan="3"/>
        <Button Content="LEFT" Grid.Row="1" Grid.Column="0"/>
        <Button Content="RIGHT" Grid.Row="1" Grid.Column="2"/>
    </Grid>

image.png

実行結果

image.png

問題点

升目上になるレイアウトで、行の数、列の数がある程度決まっている場合は、これが使い勝手が良さそう。ただ、後で行、列の数が変わると面倒になる考えられる。

StackPanel

説明

縦・横に積み上げていく。(Orientationで縦横の指定が可能)

サンプルソース

test.xaml
    <StackPanel>
        <Button Content="TOP" Height="50"/>
        <StackPanel Orientation="Horizontal">
            <Button Content="LEFT" Width="50" />
            <Grid Height="400" Width="400" />
            <Button Content="RIGHT" Width="50"/>
        </StackPanel>
        <Button Content="BOTTOM" Height="50"/>
    </StackPanel>

image.png

実行結果

image.png

問題点

空白を開けるようなデザインには向いていない。

WrapPanel

説明

サンプルソース

実行結果

問題点

StackPanelとWrapPanelの違い

image.png
image.png

4
3
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
4
3

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?