0
0

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 1 year has passed since last update.

cscの作法 その378

Posted at

概要

cscの作法、調べてみた。
wpfやってみた。
コントロール、並べてみた。

写真

image.png

サンプルコード

<Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
	xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Title="Hello, WPF!">
	<StackPanel>
		<TabControl Height="150" Margin="5" SelectedIndex="0">
			<TabItem Header="タブ1">
				<StackPanel>
					<Button Margin="10,5" Content="ボタン1" />
					<Button Margin="10,5" Content="ボタン2" />
					<Button Margin="10,5" Content="ボタン3" />
				</StackPanel>
			</TabItem>
			<TabItem Header="タブ2">
				<StackPanel>
					<Button Margin="10,5" Content="ボタン4" />
				</StackPanel>
			</TabItem>
		</TabControl>
		<Border Width="300" Height="15" Margin="10" BorderBrush="Blue" BorderThickness="1" />
		<GroupBox Width="300" Margin="10" Header="グループ">
			<StackPanel Orientation="Horizontal">
				<Button Margin="10" Content="aaa" />
				<Button Margin="10" Content="bbb" />
				<Button Margin="10" Content="ccc" />
			</StackPanel>
		</GroupBox>
		<Rectangle Width="150" Height="10" Margin="10" Fill="Magenta" />
		<Ellipse Width="80" Height="30" Margin="10" Fill="MediumAquamarine" />
		<DatePicker Width="150" Margin="10" />
		<Calendar Margin="10" />
	</StackPanel>
</Window>




以上。

0
0
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
0
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?