33 writes to RightToLeftAutoMirrorImage
System.Windows.Forms (9)
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (1)
347set => base.RightToLeftAutoMirrorImage = value;
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflowButton.cs (1)
57set => base.RightToLeftAutoMirrorImage = value;
System\Windows\Forms\Controls\ToolStrips\ToolStripSeparator.cs (1)
250set => base.RightToLeftAutoMirrorImage = value;
System\Windows\Forms\DataBinding\BindingNavigator.cs (6)
195MoveFirstItem.RightToLeftAutoMirrorImage = true; 196MovePreviousItem.RightToLeftAutoMirrorImage = true; 197MoveNextItem.RightToLeftAutoMirrorImage = true; 198MoveLastItem.RightToLeftAutoMirrorImage = true; 199AddNewItem.RightToLeftAutoMirrorImage = true; 200DeleteItem.RightToLeftAutoMirrorImage = true;
System.Windows.Forms.Tests (18)
System\Windows\Forms\ToolStripItemImageRenderEventArgsTests.cs (3)
48RightToLeftAutoMirrorImage = true, 56RightToLeftAutoMirrorImage = true, 80RightToLeftAutoMirrorImage = true,
System\Windows\Forms\ToolStripItemTests.cs (15)
7475RightToLeftAutoMirrorImage = value 7480item.RightToLeftAutoMirrorImage = value; 7484item.RightToLeftAutoMirrorImage = !value; 7503item.RightToLeftAutoMirrorImage = value; 7509item.RightToLeftAutoMirrorImage = value; 7515item.RightToLeftAutoMirrorImage = !value; 7555item.RightToLeftAutoMirrorImage = value; 7564item.RightToLeftAutoMirrorImage = value; 7573item.RightToLeftAutoMirrorImage = !value; 7602item.RightToLeftAutoMirrorImage = value; 7608item.RightToLeftAutoMirrorImage = value; 7614item.RightToLeftAutoMirrorImage = !value; 7648item.RightToLeftAutoMirrorImage = value; 7657item.RightToLeftAutoMirrorImage = value; 7666item.RightToLeftAutoMirrorImage = !value;
TestPassApp (6)
DataControls.Designer.cs (6)
115this.bindingNavigatorAddNewItem.RightToLeftAutoMirrorImage = true; 132this.bindingNavigatorDeleteItem.RightToLeftAutoMirrorImage = true; 141this.bindingNavigatorMoveFirstItem.RightToLeftAutoMirrorImage = true; 150this.bindingNavigatorMovePreviousItem.RightToLeftAutoMirrorImage = true; 178this.bindingNavigatorMoveNextItem.RightToLeftAutoMirrorImage = true; 187this.bindingNavigatorMoveLastItem.RightToLeftAutoMirrorImage = true;
34 references to RightToLeftAutoMirrorImage
System.Windows.Forms (4)
System\Windows\Forms\Controls\ToolStrips\ToolStripControlHost.cs (1)
346get => base.RightToLeftAutoMirrorImage;
System\Windows\Forms\Controls\ToolStrips\ToolStripItemImageRenderEventArgs.cs (1)
14Image = (item.RightToLeftAutoMirrorImage && item.RightToLeft == RightToLeft.Yes) ? item.MirroredImage : item.Image;
System\Windows\Forms\Controls\ToolStrips\ToolStripOverflowButton.cs (1)
56get => base.RightToLeftAutoMirrorImage;
System\Windows\Forms\Controls\ToolStrips\ToolStripSeparator.cs (1)
249get => base.RightToLeftAutoMirrorImage;
System.Windows.Forms.Tests (30)
BindingNavigatorTests.cs (1)
107Assert.True(item.RightToLeftAutoMirrorImage);
System\Windows\Forms\ToolStripButtonTests.cs (6)
81Assert.False(item.RightToLeftAutoMirrorImage); 162Assert.False(item.RightToLeftAutoMirrorImage); 249Assert.False(item.RightToLeftAutoMirrorImage); 339Assert.False(item.RightToLeftAutoMirrorImage); 427Assert.False(item.RightToLeftAutoMirrorImage); 525Assert.False(item.RightToLeftAutoMirrorImage);
System\Windows\Forms\ToolStripDropDownItemTests.cs (4)
81Assert.False(item.RightToLeftAutoMirrorImage); 170Assert.False(item.RightToLeftAutoMirrorImage); 269Assert.False(item.RightToLeftAutoMirrorImage); 377Assert.False(item.RightToLeftAutoMirrorImage);
System\Windows\Forms\ToolStripItemTests.cs (18)
80Assert.False(item.RightToLeftAutoMirrorImage); 165Assert.False(item.RightToLeftAutoMirrorImage); 260Assert.False(item.RightToLeftAutoMirrorImage); 7477Assert.Equal(value, item.RightToLeftAutoMirrorImage); 7481Assert.Equal(value, item.RightToLeftAutoMirrorImage); 7485Assert.Equal(!value, item.RightToLeftAutoMirrorImage); 7504Assert.Equal(value, item.RightToLeftAutoMirrorImage); 7510Assert.Equal(value, item.RightToLeftAutoMirrorImage); 7516Assert.Equal(!value, item.RightToLeftAutoMirrorImage); 7556Assert.Equal(value, item.RightToLeftAutoMirrorImage); 7565Assert.Equal(value, item.RightToLeftAutoMirrorImage); 7574Assert.Equal(!value, item.RightToLeftAutoMirrorImage); 7603Assert.Equal(value, item.RightToLeftAutoMirrorImage); 7609Assert.Equal(value, item.RightToLeftAutoMirrorImage); 7615Assert.Equal(!value, item.RightToLeftAutoMirrorImage); 7649Assert.Equal(value, item.RightToLeftAutoMirrorImage); 7658Assert.Equal(value, item.RightToLeftAutoMirrorImage); 7667Assert.Equal(!value, item.RightToLeftAutoMirrorImage);
System\Windows\Forms\ToolStripMenuItemTests.cs (1)
84Assert.False(item.RightToLeftAutoMirrorImage);