37 references to IsMirrored
System.Windows.Forms (14)
System\Windows\Forms\Control.cs (4)
7392&& !IsMirrored 7480if (this is not ScrollableControl && !IsMirrored) 8165bool formRTL = ((this is Form || this is MdiClient) && IsMirrored); 12834TopLevelControlInternal is { } topLevelControl && topLevelControl.RightToLeft == RightToLeft.Yes && !IsMirrored;
System\Windows\Forms\Controls\ListView\ColumnHeader.cs (1)
333if ((Index != 0) && (ListView.RightToLeft == RightToLeft.Yes) && !ListView.IsMirrored)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
1821position.Offset(control.IsMirrored ? Width : -Width, 0);
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (2)
828if (_orientation == Orientation.Horizontal && RightToLeft == RightToLeft.Yes && !IsMirrored) 1115if (_orientation == Orientation.Horizontal && RightToLeft == RightToLeft.Yes && !IsMirrored)
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.cs (1)
163if (_parent.IsMirrored)
System\Windows\Forms\Form.cs (1)
7017m.ResultInternal = (LRESULT)(nint)(IsMirrored ? PInvoke.HTBOTTOMLEFT : PInvoke.HTBOTTOMRIGHT);
System\Windows\Forms\MDI\MDIClient.cs (1)
105if (RightToLeft == RightToLeft.Yes && ParentInternal is not null && ParentInternal.IsMirrored)
System\Windows\Forms\Scrolling\ScrollableControl.cs (2)
1163if (_resetRTLHScrollValue && !IsMirrored) 1225if (!IsMirrored)
System\Windows\Forms\ToolTip\ToolTip.cs (1)
977if (TopLevelControl?.RightToLeft == RightToLeft.Yes && !control.IsMirrored)
System.Windows.Forms.Design (23)
System\Windows\Forms\Design\Behavior\BehaviorService.cs (1)
274if (c.Parent.IsMirrored)
System\Windows\Forms\Design\Behavior\DragAssistanceManager.cs (1)
546if (rootControl.Parent is not null && rootControl.Parent.IsMirrored)
System\Windows\Forms\Design\Behavior\DropSourceBehavior.cs (4)
453if (((Control)(_dragComponents[_primaryComponentIndex].dragComponent)).Parent.IsMirrored) 820if (target.IsMirrored && c.IsMirrored) 882if (parentControl.Parent is not null && parentControl.Parent.IsMirrored)
System\Windows\Forms\Design\Behavior\ResizeBehavior.cs (2)
623if (targetControl.Parent.IsMirrored) 654if (control.Parent is not null && control.Parent.IsMirrored)
System\Windows\Forms\Design\CommandSet.cs (4)
828if (primaryControl.Parent!.IsMirrored) 869if (primaryControl.Parent!.IsMirrored) 894if (primaryControl is not null && primaryControl.Parent!.IsMirrored) 902if (primaryControl is not null && primaryControl.Parent!.IsMirrored)
System\Windows\Forms\Design\ControlCommandSet.cs (5)
464bool fRTL = (primaryControl.Parent is not null && primaryControl.Parent.IsMirrored); 669if (primaryControl.Parent.IsMirrored) 709if (primaryControl.Parent.IsMirrored) 735if (primaryControl.Parent.IsMirrored) 744if (primaryControl.Parent.IsMirrored)
System\Windows\Forms\Design\ControlDesigner.cs (3)
236if (Control.Parent is not null && Control.Parent.IsMirrored) 296if (Control.IsMirrored != Control.Parent?.IsMirrored)
System\Windows\Forms\Design\MonthCalendarDesigner.cs (1)
24if (Control.Parent is null || !Control.Parent.IsMirrored)
System\Windows\Forms\Design\OleDragDropHandler.cs (1)
185if (parent is not null && parent.IsMirrored)
System\Windows\Forms\Design\ParentControlDesigner.cs (1)
541Rectangle snappedBounds = DesignerUtils.GetBoundsFromToolboxSnapDragDropInfo(e, bounds, Control.IsMirrored);