1 override of DefaultDropDownDirection
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
273public override ToolStripDropDownDirection DefaultDropDownDirection
10 writes to DefaultDropDownDirection
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (1)
281base.DefaultDropDownDirection = value;
System.Windows.Forms.Tests (8)
System\Windows\Forms\ToolStripTests.cs (8)
2163DefaultDropDownDirection = value 2169control.DefaultDropDownDirection = value; 2187control.DefaultDropDownDirection = value; 2195control.DefaultDropDownDirection = value; 2210control.DefaultDropDownDirection = ToolStripDropDownDirection.Right; 2226control.DefaultDropDownDirection = ToolStripDropDownDirection.Right; 2234control.DefaultDropDownDirection = ToolStripDropDownDirection.Default; 2244Assert.Throws<InvalidEnumArgumentException>("value", () => control.DefaultDropDownDirection = value);
System.Windows.Forms.UI.IntegrationTests (1)
DragDropTests.cs (1)
1019DefaultDropDownDirection = ToolStripDropDownDirection.BelowLeft,
24 references to DefaultDropDownDirection
System.Windows.Forms (1)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDownItem.cs (1)
130ToolStripDropDownDirection dropDownDirection = parent.DefaultDropDownDirection;
System.Windows.Forms.Tests (23)
System\Windows\Forms\MenuStripTests.cs (1)
56Assert.Equal(ToolStripDropDownDirection.BelowRight, control.DefaultDropDownDirection);
System\Windows\Forms\StatusStripTests.cs (1)
56Assert.Equal(ToolStripDropDownDirection.AboveRight, control.DefaultDropDownDirection);
System\Windows\Forms\ToolStripDropDownTests.cs (2)
1433PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ToolStrip))[nameof(ToolStrip.DefaultDropDownDirection)]; 1449PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ToolStrip))[nameof(ToolStrip.DefaultDropDownDirection)];
System\Windows\Forms\ToolStripTests.cs (19)
60Assert.Equal(ToolStripDropDownDirection.BelowRight, control.DefaultDropDownDirection); 217Assert.Equal(ToolStripDropDownDirection.BelowRight, control.DefaultDropDownDirection); 1756Assert.Equal(expected, control.DefaultDropDownDirection); 1783Assert.Equal(expected, control.DefaultDropDownDirection); 1887Assert.Equal(expected, control.DefaultDropDownDirection); 1919Assert.Equal(expected, control.DefaultDropDownDirection); 2023Assert.Equal(expected, control.DefaultDropDownDirection); 2143Assert.Equal(expected, control.DefaultDropDownDirection); 2165Assert.Equal(expected, control.DefaultDropDownDirection); 2170Assert.Equal(expected, control.DefaultDropDownDirection); 2188Assert.Equal(expected, control.DefaultDropDownDirection); 2196Assert.Equal(expected, control.DefaultDropDownDirection); 2206PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ToolStrip))[nameof(ToolStrip.DefaultDropDownDirection)]; 2211Assert.Equal(ToolStripDropDownDirection.Right, control.DefaultDropDownDirection); 2215Assert.Equal(ToolStripDropDownDirection.Right, control.DefaultDropDownDirection); 2222PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ToolStrip))[nameof(ToolStrip.DefaultDropDownDirection)]; 2227Assert.Equal(ToolStripDropDownDirection.Right, control.DefaultDropDownDirection); 2231Assert.Equal(ToolStripDropDownDirection.Right, control.DefaultDropDownDirection); 2235Assert.Equal(ToolStripDropDownDirection.BelowRight, control.DefaultDropDownDirection);