Inheritance: ISelectionPattern
コード例 #1
0
        public SelectionEventHandler(Element element, SelectionSource source)
        {
            this.source  = source;
            this.element = element;

            oldSelection = source.GetSelection();
            element.accessible.ObjectEvents.SelectionChanged += OnSelectionChanged;
        }
コード例 #2
0
ファイル: SelectionEventHandler.cs プロジェクト: mono/uia2atk
		public SelectionEventHandler (Element element, SelectionSource source)
		{
			this.source = source;
			this.element = element;

			oldSelection = source.GetSelection ();
			element.accessible.ObjectEvents.SelectionChanged += OnSelectionChanged;
		}