'Design Time'에 해당되는 글 1건
- 2009.06.12 디자인 타임에서 자식 추가 가능하게 만들기
using System.Windows.Forms; using System.ComponentModel; using System.ComponentModel.Design; [Designer("System.Windows.Forms.Design.ParentControlDesigner,System.Design", typeof(IDesigner))] public partial class UserControl1 : UserControl { public UserControl1() { InitializeComponent(); } }
[Designer("System.Windows.Forms.Design.ParentControlDesigner,System.Design", typeof(IDesigner))]
이 Attribute를 이용하면 끝.