3 writes to _selectionUISvc
System.Windows.Forms.Design (3)
System\Windows\Forms\Design\ComponentTray.cs (3)
686
_selectionUISvc
= (ISelectionUIService)GetService(typeof(ISelectionUIService));
691
_selectionUISvc
= new SelectionUIService(host);
881
_selectionUISvc
= null;
15 references to _selectionUISvc
System.Windows.Forms.Design (15)
System\Windows\Forms\Design\ComponentTray.cs (15)
389
_selectionUISvc
?.SyncSelection();
684
if (
_selectionUISvc
is null)
689
if (
_selectionUISvc
is null)
692
host.AddService(
_selectionUISvc
);
695
_grabHandle =
_selectionUISvc
.GetAdornmentDimensions(AdornmentType.GrabHandle);
722
_selectionUISvc
?.AssignSelectionUIHandler(component, this);
1593
_selectionUISvc
?.SyncSelection();
1808
Debug.Assert(
_selectionUISvc
is not null, "No SelectionUIService available for tray.");
1809
_whiteSpace = new Point(
_selectionUISvc
.GetAdornmentDimensions(AdornmentType.GrabHandle));
2119
Debug.Assert(_tray.
_selectionUISvc
is not null, "We shouldn't be able to begin a drag without this");
2120
if (_tray.
_selectionUISvc
is not null && _tray.
_selectionUISvc
.Dragging)
2122
_tray.
_selectionUISvc
.EndDrag(cancel);
2198
if (_tray.
_selectionUISvc
is not null && _tray.
_selectionUISvc
.BeginDrag(SelectionRules.Visible | SelectionRules.Moveable, _mouseDragLast.X, _mouseDragLast.Y))