public RealTimeViewerDisplay(string multicastAddr, int dataPort)
        {
            InitializeComponent();
            CultureResources.registerDataProvider(this);;

            _activeScanEndPoint = new RealTimeDataAccess(multicastAddr, dataPort);
            _effect = new SlideInTransitionEffect();
            _updateThread = Threads.Create(UpdateAgent, ref _updateEnd, "Real Time View Update thread");
        }
        public RealTimeViewerDisplay(string multicastAddr, int dataPort)
        {
            InitializeComponent();
            CultureResources.registerDataProvider(this);;

            _activeScanEndPoint = new RealTimeDataAccess(multicastAddr, dataPort);
            _effect             = new SlideInTransitionEffect();
            _updateThread       = Threads.Create(UpdateAgent, ref _updateEnd, "Real Time View Update thread");
        }