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);
1602
_selectionUISvc
?.SyncSelection();
1817
Debug.Assert(
_selectionUISvc
is not null, "No SelectionUIService available for tray.");
1818
_whiteSpace = new Point(
_selectionUISvc
.GetAdornmentDimensions(AdornmentType.GrabHandle));
2131
Debug.Assert(_tray.
_selectionUISvc
is not null, "We shouldn't be able to begin a drag without this");
2132
if (_tray.
_selectionUISvc
is not null && _tray.
_selectionUISvc
.Dragging)
2134
_tray.
_selectionUISvc
.EndDrag(cancel);
2210
if (_tray.
_selectionUISvc
is not null && _tray.
_selectionUISvc
.BeginDrag(SelectionRules.Visible | SelectionRules.Moveable, _mouseDragLast.X, _mouseDragLast.Y))