Ejemplo n.º 1
0
            public override AccessibleObject?GetFocused()
            {
                DataGridViewCell?currentCell = _owningDataGridViewRow.DataGridView?.CurrentCell;

                if (currentCell is not null && currentCell.Selected)
                {
                    return(currentCell.AccessibilityObject);
                }
 public DataGridViewLinkCellAccessibleObject(DataGridViewCell?owner) : base(owner)
 {
 }
Ejemplo n.º 3
0
            private int[] runtimeId = null !; // Used by UIAutomation

            public DataGridViewCheckBoxCellAccessibleObject(DataGridViewCell?owner) : base(owner)
            {
            }
 public DataGridViewCellAccessibleObject(DataGridViewCell?owner)
 {
     _owner = owner;
 }
Ejemplo n.º 5
0
 public DataGridViewComboBoxCellAccessibleObject(DataGridViewCell?owner) : base(owner)
 {
     _owningComboBoxCell = owner as DataGridViewComboBoxCell;
 }