16 references to IsMirrored
System.Windows.Forms (16)
winforms\Managed\System\WinForms\ColumnHeader.cs (1)
328if ((Index != 0) && (listview.RightToLeft == RightToLeft.Yes) && !listview.IsMirrored)
winforms\Managed\System\WinForms\Control.cs (4)
8795if (!(this is ScrollableControl) && !IsMirrored && GetState2(STATE2_SETSCROLLPOS) && !GetState2(STATE2_HAVEINVOKED)) { 8829if (!(this is ScrollableControl) && !IsMirrored) { 9601bool formRTL = ((this is Form || this is MdiClient) && this.IsMirrored); 16111return topLevelControl != null && topLevelControl.RightToLeft == RightToLeft.Yes && !this.IsMirrored;
winforms\Managed\System\WinForms\ErrorProvider.cs (2)
1032if (parent.IsMirrored && mirrordc != null) { 1045if (parent.IsMirrored && mirrordc != null) {
winforms\Managed\System\WinForms\Form.cs (1)
7374m.Result = IsMirrored ? (IntPtr)NativeMethods.HTBOTTOMLEFT : (IntPtr)NativeMethods.HTBOTTOMRIGHT;
winforms\Managed\System\WinForms\MainMenu.cs (1)
118return (RightToLeft == System.Windows.Forms.RightToLeft.Yes && (form == null || !form.IsMirrored));
winforms\Managed\System\WinForms\MDIClient.cs (1)
127if (this.RightToLeft == RightToLeft.Yes && this.ParentInternal != null && this.ParentInternal.IsMirrored) {
winforms\Managed\System\WinForms\ScrollableControl.cs (2)
1241if (resetRTLHScrollValue && !IsMirrored) { 1283if (!IsMirrored) {
winforms\Managed\System\WinForms\ToolStripDropDown.cs (1)
2047position.Offset(control.IsMirrored ? Width : -Width, 0);
winforms\Managed\System\WinForms\ToolTip.cs (1)
1169if (richParent != null && richParent.RightToLeft == RightToLeft.Yes && !ctl.IsMirrored) {
winforms\Managed\System\WinForms\TrackBar.cs (2)
895if (orientation == Orientation.Horizontal && RightToLeft == RightToLeft.Yes && !IsMirrored) { 1144if (orientation == Orientation.Horizontal && RightToLeft == RightToLeft.Yes && !IsMirrored) {