100 references to IsMirrored
System.Windows.Forms (14)
System\Windows\Forms\Control.cs (4)
7275&& !IsMirrored 7352if (this is not ScrollableControl && !IsMirrored) 8047bool formRTL = ((this is Form || this is MdiClient) && IsMirrored); 12693TopLevelControlInternal is { } topLevelControl && topLevelControl.RightToLeft == RightToLeft.Yes && !IsMirrored;
System\Windows\Forms\Controls\ListView\ColumnHeader.cs (1)
336if ((Index != 0) && (ListView.RightToLeft == RightToLeft.Yes) && !ListView.IsMirrored)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
1827position.Offset(control.IsMirrored ? Width : -Width, 0);
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (2)
830if (_orientation == Orientation.Horizontal && RightToLeft == RightToLeft.Yes && !IsMirrored) 1117if (_orientation == Orientation.Horizontal && RightToLeft == RightToLeft.Yes && !IsMirrored)
System\Windows\Forms\ErrorProvider\ErrorProvider.ErrorWindow.cs (1)
168if (_parent.IsMirrored)
System\Windows\Forms\Form.cs (1)
6914m.ResultInternal = (LRESULT)(nint)(IsMirrored ? PInvoke.HTBOTTOMLEFT : PInvoke.HTBOTTOMRIGHT);
System\Windows\Forms\MDI\MDIClient.cs (1)
109if (RightToLeft == RightToLeft.Yes && ParentInternal is not null && ParentInternal.IsMirrored)
System\Windows\Forms\Scrolling\ScrollableControl.cs (2)
1171if (_resetRTLHScrollValue && !IsMirrored) 1233if (!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) 826if (target.IsMirrored && c.IsMirrored) 888if (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)
834if (primaryControl.Parent!.IsMirrored) 875if (primaryControl.Parent!.IsMirrored) 900if (primaryControl is not null && primaryControl.Parent!.IsMirrored) 908if (primaryControl is not null && primaryControl.Parent!.IsMirrored)
System\Windows\Forms\Design\ControlCommandSet.cs (5)
467bool fRTL = (primaryControl.Parent is not null && primaryControl.Parent.IsMirrored); 672if (primaryControl.Parent.IsMirrored) 712if (primaryControl.Parent.IsMirrored) 738if (primaryControl.Parent.IsMirrored) 747if (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);
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\ByteViewerTests.cs (1)
90Assert.False(control.IsMirrored);
System.Windows.Forms.Tests (62)
System\Windows\Forms\AxHostTests.cs (2)
84Assert.False(control.IsMirrored); 178Assert.False(control.IsMirrored);
System\Windows\Forms\ButtonBaseTests.cs (1)
82Assert.False(control.IsMirrored);
System\Windows\Forms\ButtonTests.cs (1)
85Assert.False(control.IsMirrored);
System\Windows\Forms\CheckBoxTests.cs (1)
86Assert.False(control.IsMirrored);
System\Windows\Forms\ComboBoxTests.cs (1)
92Assert.False(control.IsMirrored);
System\Windows\Forms\ContainerControlTests.cs (1)
90Assert.False(control.IsMirrored);
System\Windows\Forms\ControlTests.cs (5)
68Assert.False(control.IsMirrored); 157Assert.False(control.IsMirrored); 253Assert.False(control.IsMirrored); 349Assert.False(control.IsMirrored); 445Assert.False(control.IsMirrored);
System\Windows\Forms\ControlTests.Properties.cs (8)
6607Assert.False(control.IsMirrored); 6610Assert.False(control.IsMirrored); 6617Assert.True(control.IsMirrored); 6620Assert.True(control.IsMirrored); 6628Assert.True(control.IsMirrored); 6631Assert.True(control.IsMirrored); 6639Assert.False(control.IsMirrored); 6642Assert.False(control.IsMirrored);
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
83Assert.False(control.IsMirrored);
System\Windows\Forms\DateTimePickerTests.cs (1)
85Assert.False(control.IsMirrored);
System\Windows\Forms\Design\ComponentEditorFormTests.cs (1)
108Assert.False(control.IsMirrored);
System\Windows\Forms\Design\ComponentEditorPageTests.cs (1)
89Assert.False(control.IsMirrored);
System\Windows\Forms\DomainUpDownTests.cs (1)
111_sub.IsMirrored.Should().BeFalse();
System\Windows\Forms\FlowLayoutPanelTests.cs (1)
84Assert.False(control.IsMirrored);
System\Windows\Forms\FormTests.cs (1)
110Assert.False(control.IsMirrored);
System\Windows\Forms\GroupBoxTests.cs (1)
72Assert.False(control.IsMirrored);
System\Windows\Forms\HScrollBarTests.cs (1)
79Assert.False(control.IsMirrored);
System\Windows\Forms\LabelTests.cs (1)
77Assert.False(control.IsMirrored);
System\Windows\Forms\ListBoxTests.cs (1)
85Assert.False(control.IsMirrored);
System\Windows\Forms\ListControlTests.cs (1)
78Assert.False(control.IsMirrored);
System\Windows\Forms\ListViewTests.cs (1)
98Assert.False(control.IsMirrored);
System\Windows\Forms\MdiClientTests.cs (1)
56Assert.False(control.IsMirrored);
System\Windows\Forms\MenuStripTests.cs (1)
98Assert.False(control.IsMirrored);
System\Windows\Forms\MonthCalendarTests.cs (1)
89Assert.False(control.IsMirrored);
System\Windows\Forms\PanelTests.cs (1)
84Assert.False(control.IsMirrored);
System\Windows\Forms\PictureBoxTests.cs (1)
79Assert.False(control.IsMirrored);
System\Windows\Forms\ProgressBarTests.cs (1)
69Assert.False(control.IsMirrored);
System\Windows\Forms\PropertyGridTests.cs (1)
117Assert.False(control.IsMirrored);
System\Windows\Forms\RadioButtonTests.cs (1)
85Assert.False(control.IsMirrored);
System\Windows\Forms\RichTextBoxTests.cs (1)
89Assert.False(control.IsMirrored);
System\Windows\Forms\ScrollableControlTests.cs (1)
83Assert.False(control.IsMirrored);
System\Windows\Forms\ScrollBarTests.cs (1)
69Assert.False(control.IsMirrored);
System\Windows\Forms\SplitterPanelTests.cs (1)
74Assert.False(control.IsMirrored);
System\Windows\Forms\SplitterTests.cs (1)
70Assert.False(control.IsMirrored);
System\Windows\Forms\StatusStripTests.cs (1)
98Assert.False(control.IsMirrored);
System\Windows\Forms\TabControlTests.cs (1)
74Assert.False(control.IsMirrored);
System\Windows\Forms\TableLayoutPanelTests.cs (1)
90Assert.False(control.IsMirrored);
System\Windows\Forms\TabPageTests.cs (2)
89Assert.False(control.IsMirrored); 198Assert.False(control.IsMirrored);
System\Windows\Forms\ToolStripContentPanelTests.cs (1)
86Assert.False(control.IsMirrored);
System\Windows\Forms\ToolStripDropDownTests.cs (1)
104Assert.False(control.IsMirrored);
System\Windows\Forms\ToolStripPanelTests.cs (1)
86Assert.False(control.IsMirrored);
System\Windows\Forms\ToolStripTests.cs (2)
116Assert.False(control.IsMirrored); 270Assert.False(control.IsMirrored);
System\Windows\Forms\TreeViewTests.cs (1)
80Assert.False(control.IsMirrored);
System\Windows\Forms\UpDownBaseTests.cs (1)
98Assert.False(control.IsMirrored);
System\Windows\Forms\UserControlTests.cs (1)
90Assert.False(control.IsMirrored);
System\Windows\Forms\VScrollBarTests.cs (1)
78Assert.False(control.IsMirrored);
TextBoxTests.cs (1)
77Assert.False(control.IsMirrored);
TrackBarTests.cs (1)
71Assert.False(control.IsMirrored);