using System;
using System.Collections;
using System.Collections.Generic;
using System.ComponentModel;
using System.ComponentModel.Design;
using System.ComponentModel.Design.Serialization;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Web.UI.Design.WebControls;
using System.Windows.Forms;
using YUTU.UIL.Common.Controls;
namespace WindowsFormsApp1
{
public partial class Form3 : Form
{
public Form3()
{
InitializeComponent();
}
private void Form3_Load(object sender, EventArgs e)
{
initDesign();
loadVisibleControl();
}
DesignSurface surface;
IDesignerHost host;
Control root;
private void initDesign()
{
surface = new DesignSurface();
surface.BeginLoad(typeof(UserControl));
Control designView = surface.View as Control;
panel1.Controls.Add(designView);
designView.Dock = DockStyle.Fill;
designView.Visible = true;
host = (IDesignerHost)surface.GetService(typeof(IDesignerHost));
root = (Control)host.RootComponent;
root.Dock = DockStyle.Fill;
ISelectionService selectionService = host.GetService(typeof(ISelectionService)) as ISelectionService;
selectionService.SelectionChanged += delegate
{
try
{
ICollection collection = selectionService.GetSelectedComponents();
if (collection.Count > 0)
{
foreach (Control item in collection)
{
label1.Text = "X:" + item.Location.X.ToString();
label2.Text = "Y:" + item.Location.Y.ToString();
}
}
}
catch (Exception ex)
{
MessageBox.Show(ex.Message);
}
};
}
public void loadVisibleControl()
{
TextBoxEx tbe = (TextBoxEx)host.CreateComponent(typeof(TextBoxEx), "name");
tbe.LabelText = "姓名";
root.Controls.Add(tbe);
TextBoxEx tbe1 = (TextBoxEx)host.CreateComponent(typeof(TextBoxEx), "class");
tbe1.LabelText = "班級";
root.Controls.Add(tbe1);
TextBoxEx tbe2 = (TextBoxEx)host.CreateComponent(typeof(TextBoxEx), "age");
tbe2.LabelText = "年齡";
root.Controls.Add(tbe2);
}
}
}
主要用到的技術知識點:
DesignSurface 類
參考
定義
命名空間:
System.ComponentModel.Design
程序集:
System.Windows.Forms.Design.dll
為設計組件提供一個用戶界面。
C#
public class DesignSurface : IDisposable, IServiceProvider
繼承
Object
DesignSurface
實現
IDisposable IServiceProvider
注解
類 DesignSurface 實現用戶視為設計器的內容。DesignSurface 是用戶操作以更改設計時功能的用戶界面。DesignSurface 提供完全獨立的設計圖面。
類 DesignSurface 可以用作獨立設計器,也可以與 DesignSurfaceManager 類結合使用,為托管多個 DesignSurface 對象的應用程序提供通用實現。
類 DesignSurface 可以單獨使用,或者用戶可以從中派生一個新類并增強行為。
類 DesignSurface 自動提供多個設計時服務。類 DesignSurface 在其構造函數中添加其所有服務。這些服務中的大多數都可以通過在受保護的 ServiceContainer 屬性中替換它們來重寫。若要替換服務,請重寫構造函數、調用基,并通過受保護的 ServiceContainer 屬性進行任何更改。在釋放設計圖面時,將釋放添加到服務容器和實現 IDisposable 的所有服務。下表顯示了類提供的默認可替換服務 DesignSurface 集。
閱讀原文:https://mp.weixin.qq.com/s/NhlJtbw9i3gy-RqZnOEmuA
該文章在 2024/12/28 12:07:44 編輯過