[C#] 21일차 - 154. 메뉴와 대화상자(폰트, 컬러)C#/C#200제2021. 2. 25. 23:02
Table of Contents
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace A154_Menu
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
lblTime.Text = "";
lblTime.Font = new Font("맑은 고딕", 20, FontStyle.Bold);
T.Interval = 1000;
T.Tick += T_Tick;
T.Start();
}
private void T_Tick(object sender, EventArgs e)
{
lblTime.Location = new Point(
ClientSize.Width / 2 - lblTime.Width / 2,
ClientSize.Height / 2 - lblTime.Height / 2);
lblTime.Text = DateTime.Now.ToString();
}
private void 폰트ToolStripMenuItem_Click(object sender, EventArgs e)
{
FontDialog fDlg = new FontDialog();
fDlg.ShowColor = true;
fDlg.ShowEffects = true;
fDlg.Font = lblTime.Font;
fDlg.Color = lblTime.ForeColor;
// 폰트 변경하면 lblTime에 적용
if(fDlg.ShowDialog() == DialogResult.OK)
{
lblTime.Font = fDlg.Font;
lblTime.ForeColor = fDlg.Color;
}
}
private void 배경색ToolStripMenuItem_Click(object sender, EventArgs e)
{
ColorDialog cDlg = new ColorDialog();
// 배경색 변경하면 배경색에 적용
if (cDlg.ShowDialog() == DialogResult.OK)
{
this.BackColor = cDlg.Color;
}
}
// 끝내기
private void 끝내기ToolStripMenuItem_Click(object sender, EventArgs e)
{
this.Close();
}
}
}
반응형
'C# > C#200제' 카테고리의 다른 글
[C#] 21일차 - 156. WPF로 Hello World 프로그램 만들기 (0) | 2021.03.01 |
---|---|
[C#] 21일차 - 155. GDH+와 ToolStrip, StatusStrip을 사용한 그래픽 프로그램 (0) | 2021.02.25 |
[C#] 21일차 - 153. OpenFileDialog를 이용해서 메모장에서 파일열기 (0) | 2021.02.25 |
[C#] 21일차 - 152. WMP 컨트롤을 이용한 동영상 플레이어 (0) | 2021.02.25 |
[C#] 21일차 - 151. WindowsMediaPlayer를 이용한 소리나는 알람시계 (0) | 2021.02.25 |
@반나무 :: 반나무_뿌리
3년차 WPF 개발자입니다.
포스팅이 좋았다면 "좋아요❤️" 또는 "구독👍🏻" 해주세요!