using System; using System.Collections.Generic; using System.ComponentModel; using System.Drawing; using System.Data; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; namespace UAS_DLLTest { public partial class ParamControl : UserControl { public ParamControl() { InitializeComponent(); } public string paramsValue { get { return paramValue.Text; } set { paramValue.Text = value; } } public string paramsName { get { return paramName.Text; } set { paramName.Text = value; } } public string paramsValueName { get { return paramValue.Name; } set { paramValue.Name = value; } } } }