[C#] 21일차 - 154. 메뉴와 대화상자(폰트, 컬러)
C#/C#200제2021. 2. 25. 23:02[C#] 21일차 - 154. 메뉴와 대화상자(폰트, 컬러)

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를 이용해서 메모장에서 파일열기
C#/C#200제2021. 2. 25. 22:44[C#] 21일차 - 153. OpenFileDialog를 이용해서 메모장에서 파일열기

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 컨트롤을 이용한 동영상 플레이어
C#/C#200제2021. 2. 25. 22:32[C#] 21일차 - 152. WMP 컨트롤을 이용한 동영상 플레이어

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

C#/C#200제2021. 2. 25. 21:06[C#] 21일차 - 151. WindowsMediaPlayer를 이용한 소리나는 알람시계

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을 사용한 디지털 알람시계
C#/C#200제2021. 2. 25. 20:56[C#] 21일차 - 150. TabControl을 사용한 디지털 알람시계

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

image