1. xaml 소스 코드
<Window x:Class="_20190410_3.MainWindow"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:local="clr-namespace:_20190410_3"
mc:Ignorable="d"
Title="MainWindow" Height="450" Width="800">
<Grid>
<TabControl>
<TabItem Header="1월">
<GroupBox Header="옷"
Height="120"
Width="150">
<StackPanel>
<Label Content="사이즈"/>
<CheckBox Content="S"/>
<CheckBox Content="M"/>
<CheckBox Content="L"/>
</StackPanel>
</GroupBox>
</TabItem>
<TabItem Header="2월">
<Grid ShowGridLines="True">
<Grid.ColumnDefinitions>
<ColumnDefinition/>
<ColumnDefinition/>
</Grid.ColumnDefinitions>
<Grid.RowDefinitions>
<RowDefinition/>
<RowDefinition/>
</Grid.RowDefinitions>
</Grid>
</TabItem>
<TabItem Header="3월">
</TabItem>
</TabControl>
</Grid>
</Window>
2. 이벤트함수 소스 코드
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows;
using System.Windows.Controls;
using System.Windows.Data;
using System.Windows.Documents;
using System.Windows.Input;
using System.Windows.Media;
using System.Windows.Media.Imaging;
using System.Windows.Navigation;
using System.Windows.Shapes;
namespace _20190410_3
{
/// <summary>
/// MainWindow.xaml에 대한 상호 작용 논리
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
}
}
3. 결과
'Language > C# WPF Programming' 카테고리의 다른 글
C# WPF 프로그래밍 SubWindow 생성 구현하기 (0) | 2019.04.21 |
---|---|
C# WPF 프로그래밍 콤보박스(Combo Box) 구현 (0) | 2019.04.20 |
C# WPF 프로그래밍 계산기(Calculator) 프로그램 만들기 - 최종(기능 구현) (0) | 2019.04.20 |
C# WPF 프로그래밍 TreeView 아이템 컨트롤 구현하기 (0) | 2019.04.19 |
C# WPF 프로그래밍 메뉴(Menu) 아이템 컨트롤 구현하기 (0) | 2019.04.17 |
C# WPF 프로그래밍 아이템 컨트롤 리스트 박스(list box)구현 (0) | 2019.04.16 |
C# WPF 프로그래밍 계산기 프로그램 만들기(Calculator) - 3(xaml 코드 수정 및 이벤트 함수 수정) (0) | 2019.04.12 |
C# WPF 프로그래밍 계산기 프로그램 만들기(Calculator) - 2(xaml 코드 정리 및 이벤트 함수 생성 2가지) (0) | 2019.04.11 |
최근댓글