현재 프로젝트에 있는 모든 UI 클래스 명을 얻어와 보자! 1 namespace NSCL 2 { 3 public partial class Form1 : Form 4 { 5 public Form1() 6 { 7 InitializeComponent(); 8 this.Load += new EventHandler(Form1_Load); 9 } 10 11 void Form1_Load(object sender, EventArgs e) 12 { 13 GetClassNames(); 14 } 15 16 private void GetClassNames() 17 { 18 List clsNames = new List(); 19 Assembly asm = Assembly.GetExecutingAssembly(); 20 21 f..