34 references to ControlInternal
System.Windows.Forms (34)
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (34)
58get => ControlInternal.BackColor; 59set => ControlInternal.BackColor = value; 71get => ControlInternal.BackgroundImage; 72set => ControlInternal.BackgroundImage = value; 81get => ControlInternal.BackgroundImageLayout; 82set => ControlInternal.BackgroundImageLayout = value; 95get => ControlInternal.CausesValidation; 96set => ControlInternal.CausesValidation = value; 191get => ControlInternal.Font; 192set => ControlInternal.Font = value; 197get => ControlInternal.Enabled; 198set => ControlInternal.Enabled = value; 211public virtual bool Focused => ControlInternal.Focused; 215get => ControlInternal.ForeColor; 216set => ControlInternal.ForeColor = value; 392ControlInternal.Site = value is not null 393? new StubSite(ControlInternal, this) 405get => ControlInternal.Text; 406set => ControlInternal.Text = value; 471public void Focus() => ControlInternal.Focus(); 584bool controlVisibleStateFlag = ((IArrangedElement)ControlInternal).ParticipatesInLayout; 589Visible = ControlInternal.Visible; 600ControlInternal.AccessibleDescription = AccessibleDescription; 605ControlInternal.AccessibleName = AccessibleName; 610ControlInternal.AccessibleDefaultActionDescription = AccessibleDefaultActionDescription; 615ControlInternal.AccessibleRole = AccessibleRole; 811Size = ControlInternal.Size; 831ControlInternal.SuspendLayout(); 834ControlInternal.Visible = visible; 838ControlInternal.ResumeLayout(false); 846public override void ResetBackColor() => ControlInternal.ResetBackColor(); 849public override void ResetForeColor() => ControlInternal.ResetForeColor(); 877KeyboardToolTipStateMachine.Instance.Hook(ControlInternal, toolTip); 884KeyboardToolTipStateMachine.Instance.Unhook(ControlInternal, toolTip);