コード例 #1
0
        public MouseEventListener(Control control)
        {
            Form = control;
            gfx = Form.CreateGraphics();
            DrawCross(Drawing.Color.LightGray, new Drawing.Point(Form.ClientRectangle.Width / 2, Form.ClientRectangle.Height / 2));
            string myIP = "127.0.0.1";
            //myIP = "192.168.1.141"; //e1
            //myIP = "192.168.1.136"; //e2
            //myIP = "192.168.1.108"; //diplom-vm bei wkm

            //put a bounding box around all the points for drawing in a
            //different size

            controller = new ClientCommunication(this, myIP); //xxx todo: this is not correct. the view is desktopApp.Winformgui, not inputarea
            OnlyActiveStrokeFinished = controller.SendPointList;
        }
コード例 #2
0
        public MouseEventListener(Control control)
        {
            Form = control;
            gfx  = Form.CreateGraphics();
            DrawCross(Drawing.Color.LightGray, new Drawing.Point(Form.ClientRectangle.Width / 2, Form.ClientRectangle.Height / 2));
            string myIP = "127.0.0.1";

            //myIP = "192.168.1.141"; //e1
            //myIP = "192.168.1.136"; //e2
            //myIP = "192.168.1.108"; //diplom-vm bei wkm

            //put a bounding box around all the points for drawing in a
            //different size

            controller = new ClientCommunication(this, myIP); //xxx todo: this is not correct. the view is desktopApp.Winformgui, not inputarea
            OnlyActiveStrokeFinished = controller.SendPointList;
        }