3 writes to _selectionUISvc
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ComponentTray.cs (3)
692
_selectionUISvc
= (ISelectionUIService)GetService(typeof(ISelectionUIService));
697
_selectionUISvc
= new SelectionUIService(host);
890
_selectionUISvc
= null;
15 references to _selectionUISvc
System.Windows.Forms.Design (15)
System\Windows\Forms\Design\ComponentTray.cs (15)
395
_selectionUISvc
?.SyncSelection();
690
if (
_selectionUISvc
is null)
695
if (
_selectionUISvc
is null)
698
host.AddService(
_selectionUISvc
);
701
_grabHandle =
_selectionUISvc
.GetAdornmentDimensions(AdornmentType.GrabHandle);
728
_selectionUISvc
?.AssignSelectionUIHandler(component, this);
1608
_selectionUISvc
?.SyncSelection();
1823
Debug.Assert(
_selectionUISvc
is not null, "No SelectionUIService available for tray.");
1824
_whiteSpace = new Point(
_selectionUISvc
.GetAdornmentDimensions(AdornmentType.GrabHandle));
2137
Debug.Assert(_tray.
_selectionUISvc
is not null, "We shouldn't be able to begin a drag without this");
2138
if (_tray.
_selectionUISvc
is not null && _tray.
_selectionUISvc
.Dragging)
2140
_tray.
_selectionUISvc
.EndDrag(cancel);
2216
if (_tray.
_selectionUISvc
is not null && _tray.
_selectionUISvc
.BeginDrag(SelectionRules.Visible | SelectionRules.Moveable, _mouseDragLast.X, _mouseDragLast.Y))