C# 윈폼 숨기는 방법 코드
C# how to hide winform 소스코드 using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading; using System.Threading.Tasks; using System.Windows.Forms; namespace HideApp { public partial class Form1 : Form { public Form1() { InitializeComponent(); } private void Form1_Shown(object se..
프로그래밍/C#
2021. 9. 24. 09:42