新規作成日 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>