[C#] 21일차 - 156. WPF로 Hello World 프로그램 만들기C#/C#200제2021. 3. 1. 14:49
Table of Contents
WPF(Windows Presentation Foundation)
장점 : 디자인과 프로그램 로직이 분리되어 있다는 점.
디자인은 XAML(eXrensible Application Markup Language)로 로직은 C#을 사용한다.
강력한 데이터바인딩을 제공한다는점
컨트롤을 새로 만들 수 있다는점.(사용자가 버튼안에 이밎와 텍스트가 있는 새로운 버튼 컨트롤을 만들어서 아용할 수 있습니다.)
<Window x:Class="A156_WPF_HelloWorld.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:A156_WPF_HelloWorld"
mc:Ignorable="d"
Title="MainWindow" Height="350" Width="450">
<Grid>
<Label Name="label1"
HorizontalAlignment="Center"
VerticalAlignment="Center"
FontSize="30"
FontWeight="Bold"
Content="Hello World!"
MouseDown="label1_MouseDown"/>
</Grid>
</Window>
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 A156_WPF_HelloWorld
{
/// <summary>
/// MainWindow.xaml에 대한 상호 작용 논리
/// </summary>
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
}
// label1의 마우스 다운 이벤트 처리 메소드
private void label1_MouseDown(object sender, MouseButtonEventArgs e)
{
// 처음 label1의 전경색이 흰색이 아니면 참 ( 처음엔 무조건 검정이라 참이됨 )
if(label1.Foreground != Brushes.White)
{
label1.Foreground = Brushes.White;
this.Background = Brushes.Blue;
} else
{
label1.Foreground = SystemColors.WindowTextBrush;
this.Background = SystemColors.WindowBrush;
}
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 21일차 - 159. WPF DispatcherTimer와 깜박이는 프로그램 (0) | 2021.03.01 |
---|---|
[C#] 21일차 - 157. WPF의 레이아웃 (0) | 2021.03.01 |
[C#] 21일차 - 155. GDH+와 ToolStrip, StatusStrip을 사용한 그래픽 프로그램 (0) | 2021.02.25 |
[C#] 21일차 - 154. 메뉴와 대화상자(폰트, 컬러) (0) | 2021.02.25 |
[C#] 21일차 - 153. OpenFileDialog를 이용해서 메모장에서 파일열기 (0) | 2021.02.25 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!