using System.Windows.Forms; namespace SHARP_CLAS_UI.Custom_UI { public partial class uc_System_Param : UserControl { private string name; private DIT.SharedMemory.SharedmemoryAddressInfo addressinfo; public uc_System_Param(string name, DIT.SharedMemory.SharedmemoryAddressInfo addressinfo) { InitializeComponent(); this.name = name; lb_ParamName.Text = name; this.addressinfo = addressinfo; } public uc_System_Param() { InitializeComponent(); } } }