1 write to _designerActionHost
System.Windows.Forms.Design (1)
System\ComponentModel\Design\DesignerActionUI.cs (1)
697
_designerActionHost
= new DesignerActionToolStripDropDown(this, _mainParentWindow)
25 references to _designerActionHost
System.Windows.Forms.Design (25)
System\ComponentModel\Design\DesignerActionUI.cs (25)
337
DesignerActionPanel? dap =
_designerActionHost
.CurrentPanel; // WE DO NOT RECREATE THE WHOLE THING / WE UPDATE THE TASKS - should flicker less
342
_designerActionHost
.UpdateContainerSize();
564
_designerActionHost
.Close();
568
[MemberNotNullWhen(true, nameof(
_designerActionHost
))]
571
get => (
_designerActionHost
is not null &&
_designerActionHost
.Visible);
637
if (
_designerActionHost
is null)
644
return
_designerActionHost
.Location;
652
return
_designerActionHost
.Location;
657
Point pt = DesignerActionPanel.ComputePreferredDesktopLocation(rectGlyph,
_designerActionHost
.Size, out DockStyle edgeToDock);
659
_designerActionHost
.Location = pt;
695
if (
_designerActionHost
is null)
704
_designerActionHost
.Closing += ToolStripDropDown_Closing;
708
_designerActionHost
.AccessibleName = string.Format(SR.DesignerActionPanel_DefaultPanelTitle, relatedComponent.GetType().Name);
711
_designerActionHost
.SetDesignerActionPanel(panel, glyph);
721
_designerActionHost
,
727
_designerActionHost
.Show(location);
728
_designerActionHost
.Focus();
733
_designerActionHost
.BeginInvoke(OnShowComplete);
739
_designerActionKeyboardBehavior = new DesignerActionKeyboardBehavior(
_designerActionHost
.CurrentPanel, _serviceProvider, _behaviorService);
750
if (
_designerActionHost
is not null &&
_designerActionHost
.Handle != 0 &&
_designerActionHost
.Visible)
752
PInvoke.SetActiveWindow(
_designerActionHost
);
753
_designerActionHost
.CheckFocusIsRight();