示例#1
0
        public agentForm()
        {
            InitializeComponent();
            startAgent.Text = "START";

            if (logger.IsDebugEnabled)
            {
                logger.Debug(this.ToString() + " 인스턴스 생성");
            }


            // Mac 주소 조회
            MacAddr.Text = DeviceUtil.GetMacAddress();
            if (MacAddr.Text == "")
            {
                MessageBox.Show("네트워크에 연결된 Mac주소를 찾을수가 없네요.");
                this.Close();
                return;
            }
            logger.Debug("MacAddr :" + MacAddr.Text);
        }