Home > C# > WPF > 単純なデザインのウィンドウ > テキストブロックと横に並んだ2つのボタンを持つウィンドウ

テキストブロックと横に並んだ2つのボタンを持つウィンドウ

新規作成日 2019-10-31
最終更新日

C# WPFで、複数のコントロールを配置する際、さまざまな選択肢があります。

テキストブロックと横に並んだ、2つのボタンを持つウィンドウです。

横に並んだボタンは、レイアウトコンテナで、StackPanelを使用し、Orientation属性に、Horizontalを指定し、ボタンを横に並べています。更に、テキストブロックを追加しています。

テキストブロックと横に並んだ2つのボタンを持つウィンドウ
<Window x:Class="_2ButtonEvents.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"

        Title="MainWindow" Height="140" Width="300">
    <StackPanel>
        <TextBlock Name="tb" FontSize="14">テキストブロック</TextBlock>
        <StackPanel Orientation="Horizontal" HorizontalAlignment="Center">
            <Button Height="50" Width="100" Margin="15" FontSize="14">ボタン A</Button>
            <Button Height="50" Width="100" Margin="15" FontSize="14">ボタン B</Button>
        </StackPanel>
    </StackPanel>

</Window>
このエントリーをはてなブックマークに追加

Home PC C# Illustration

Copyright (C) 2011 Horio Kazuhiko(kukekko) All Rights Reserved.
kukekko@gmail.com
ご連絡の際は、お問い合わせページのURLの明記をお願いします。
「掲載内容は私自身の見解であり、所属する組織を代表するものではありません。」