천호석
2022-11-21 0f953099b1682402cf5e640db29d1c99936e28fd
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
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();
        }
 
    }
}