duheng
2025-03-28 9be9ba4e159969fb5e32648c2c34e912ccc3ae6d
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
namespace HStation.WinFrmUI
{
    /// <summary>
    /// 控件程序集信息
    /// </summary>
    public class ControlAssemblyInfo
    {
        public ControlAssemblyInfo()
        { }
 
        public ControlAssemblyInfo(string dllFileName, string controlFullName)
        {
            this.DllFileName = dllFileName;
            this.ControlFullName = controlFullName;
        }
 
        public ControlAssemblyInfo(ControlAssemblyInfo rhs)
        {
            this.DllFileName = rhs.DllFileName;
            this.ControlFullName = rhs.ControlFullName;
        }
 
        /// <summary>
        /// DLL 文件名称
        /// </summary>
        public string DllFileName { get; set; }
 
        /// <summary>
        /// 控件全名称
        /// </summary>
        public string ControlFullName { get; set; }
    }
}