コード例 #1
0
        private void OnJoin(JoinProtocol p, bool self, int from)
        {
            if (start)
            {
                return;
            }

            count = 10;
            Invoke2(() =>
            {
                label2.Text = "Receive Join " + self;
                timer2.Start();
            });
        }
コード例 #2
0
ファイル: Form1.cs プロジェクト: john-guo/NetEvent
        private void OnJoin(JoinProtocol p, bool self, int from)
        {
            if (start)
                return;

            count = 10;
            Invoke2(() =>
            {
                label2.Text = "Receive Join " + self;
                timer2.Start();
            });
        }