![[C#] 21일차 - 154. 메뉴와 대화상자(폰트, 컬러)](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fbn1Ebl%2FbtqYDldILpt%2FFKPSwbEcZsF8Kjn6qe1Az1%2Fimg.png)
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 = ..
![[C#] 21일차 - 153. OpenFileDialog를 이용해서 메모장에서 파일열기](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FkU7tI%2FbtqYE77k7V5%2FAbgK0atk8bz3oVns7ekbQ0%2Fimg.png)
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; using System.IO; using System.Diagnostics; using System.Security; namespace A153_OpenFileDialog { public partial class Form1 : Form { public Form1() { InitializeComponent(); openFileDi..
![[C#] 21일차 - 152. WMP 컨트롤을 이용한 동영상 플레이어](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2FwwV9m%2FbtqYxpurShO%2FUOUU291SbU1zKVxNU6yX5k%2Fimg.png)
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 A152_WMP { public partial class Form1 : Form { public Form1() { InitializeComponent(); WMP.uiMode = "full"; WMP.stretchToFit = true; btnFile.Location = new Point( ClientSize...
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; using WMPLib; // WindowsMediaPlayer namespace A150_TabControl { public partial class Form1 : Form { private Timer myTimer = new Timer(); private DateTime dDay; // 알람 날짜 private DateTim..
![[C#] 21일차 - 150. TabControl을 사용한 디지털 알람시계](https://img1.daumcdn.net/thumb/R750x0/?scode=mtistory2&fname=https%3A%2F%2Fblog.kakaocdn.net%2Fdn%2Fcex6gP%2FbtqYrGKR7Gw%2FsVuZbjkZAifKzJSxvLtxd0%2Fimg.png)
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 A150_TabControl { public partial class Form1 : Form { private Timer myTimer = new Timer(); private DateTime dDay; // 알람 날짜 private DateTime tTime; // 알람 시간 private bool setAl..