Home > C# > WPF > 単純なデザインのウィンドウ

C#のWPF向け、ラベルとテキストボックス、ボタンを持つウィンドウのxaml表記例

新規作成日 2017-01-29
最終更新日

ちょっとプログラムの動作を確認するだけのために、UIウィンドウを作成したい時があります。そんなときに、既に出来上がったUIウィンドウがあれば、コピペで利用できます。

コードの動作を確認するために使用する、短いプログラムのためのメインウィンドウをいろいろ集めておくと、コードの動作検証などに便利です。

C#のWPF向け、ラベルとテキストボックス、ボタンを持つウィンドウのxaml表記例です。

ラベルとテキストボックス、ボタンを持つウィンドウ

<Window x:Class="PassExchange.MainWindow"
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="MainWindow" Height="120" Width="400">
    <StackPanel>
        <DockPanel>
            <Label Width="50">Label</Label>
            <TextBox Name="BaseUrl">TextBox</TextBox>            
        </DockPanel>
        <DockPanel>
            <Label Width="50" DockPanel.Dock="Left">Label</Label>
            <Button Width="100" HorizontalAlignment="Right" DockPanel.Dock="Right">Button</Button>
            <TextBox Name="relUrl">TextBox</TextBox>
        </DockPanel>
        <DockPanel>
            <Label Width="50" DockPanel.Dock="Left">Label</Label>
            <Button Width="100" HorizontalAlignment="Right" DockPanel.Dock="Right">Button</Button>
            <TextBox Name="absUrl">TextBox</TextBox>
         </DockPanel>
    </StackPanel>
</Window>
このエントリーをはてなブックマークに追加

Home PC C# Illustration

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