public void SetServerProxy(LCTServerMessageProxy serverProxy,bool isSendDataWindow,
     List<SenderRedundancyInfo> senderReduInfoList,SenderProperty senderProp,
     List<ILEDDisplayInfo> oldDisplayList,GraphicsDVIPortInfo graphicsDviInf)
 {
 }
        private void InitalizeServerProxy(SystemType sysType)
        {
            if (_proxy != null)
            {
                TerminateServerProxy();
            }
            if (sysType == SystemType.Synchronized)
            {
                Proxy = new LCTServerMessageProxy();
            }
            else if (sysType == SystemType.TestSystem)
            {
                //Proxy = new LCTServerProxyTest();
            }
            _proxy.Initalize();

            AttachServerEvent(_proxy);

            _globalParams.ServerProxy = _proxy;
        }