System.ComponentModel.Design.DesignSurface是為設(shè)計組件提供一個用戶界面,通過它可以實現(xiàn)一個簡單的窗體設(shè)計器。
在構(gòu)建之前,我們需要引入System.Design.dll,否則會出現(xiàn)找不到DesignSurface的錯誤。
1 private void Form1_Load(object sender, EventArgs e) 2 { 3 //引用System.Deisgn.dll 4 DesignSurface ds = new DesignSurface(); 5 //開始加載窗體 6 ds.BeginLoad(typeof(Form)); 7 Control designerContorl = (Control)ds.View; 8 designerContorl.Dock = DockStyle.Fill; 9 &n