コード例 #1
0
ファイル: User.cs プロジェクト: NikitaMartynov/DSProject
        public void userInit(UserForm userForm)
        {
            this.userForm = userForm;
            this.NodeIds = new Dictionary<int, string>();

            this.receiveRegTempThread = new Thread(UdpSockReceiverRegTemp);
            this.receiveRegTempThread.Start();
            this.receiveIpsThread = new Thread(tcpReceiveNodeIP);
            this.receiveIpsThread.Start();
        }
コード例 #2
0
ファイル: AddUserForm.cs プロジェクト: CS-CP/LP2-TA-ClientC-
 public void SetParent(UserForm form)
 {
     refParent = form;
 }