예제 #1
0
파일: Window.cs 프로젝트: zyfzgt/NetOffice
        public void DisposeEventBridge()
        {
            if (null != _eWindow_SinkHelper)
            {
                _eWindow_SinkHelper.Dispose();
                _eWindow_SinkHelper = null;
            }

            _connectPoint = null;
        }
예제 #2
0
파일: Window.cs 프로젝트: zyfzgt/NetOffice
        public void CreateEventBridge()
        {
            if (false == Factory.Settings.EnableEvents)
            {
                return;
            }

            if (null != _connectPoint)
            {
                return;
            }

            if (null == _activeSinkId)
            {
                _activeSinkId = SinkHelper.GetConnectionPoint(this, ref _connectPoint, EWindow_SinkHelper.Id);
            }


            if (EWindow_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase))
            {
                _eWindow_SinkHelper = new EWindow_SinkHelper(this, _connectPoint);
                return;
            }
        }
예제 #3
0
        public void DisposeEventBridge()
        {
			if( null != _eWindow_SinkHelper)
			{
				_eWindow_SinkHelper.Dispose();
				_eWindow_SinkHelper = null;
			}

			_connectPoint = null;
		}
예제 #4
0
		public void CreateEventBridge()
        {
			if(false == Factory.Settings.EnableEvents)
				return;
	
			if (null != _connectPoint)
				return;
	
            if (null == _activeSinkId)
				_activeSinkId = SinkHelper.GetConnectionPoint(this, ref _connectPoint, EWindow_SinkHelper.Id);


			if(EWindow_SinkHelper.Id.Equals(_activeSinkId, StringComparison.InvariantCultureIgnoreCase))
			{
				_eWindow_SinkHelper = new EWindow_SinkHelper(this, _connectPoint);
				return;
			} 
        }