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)
2161DefaultDropDownDirection = value 2167control.DefaultDropDownDirection = value; 2185control.DefaultDropDownDirection = value; 2193control.DefaultDropDownDirection = value; 2208control.DefaultDropDownDirection = ToolStripDropDownDirection.Right; 2224control.DefaultDropDownDirection = ToolStripDropDownDirection.Right; 2232control.DefaultDropDownDirection = ToolStripDropDownDirection.Default; 2242Assert.Throws<InvalidEnumArgumentException>("value", () => control.DefaultDropDownDirection = value);
System.Windows.Forms.UI.IntegrationTests (1)
DragDropTests.cs (1)
962DefaultDropDownDirection = 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)
54Assert.Equal(ToolStripDropDownDirection.BelowRight, control.DefaultDropDownDirection);
System\Windows\Forms\StatusStripTests.cs (1)
54Assert.Equal(ToolStripDropDownDirection.AboveRight, control.DefaultDropDownDirection);
System\Windows\Forms\ToolStripDropDownTests.cs (2)
1431PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ToolStrip))[nameof(ToolStrip.DefaultDropDownDirection)]; 1447PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ToolStrip))[nameof(ToolStrip.DefaultDropDownDirection)];
System\Windows\Forms\ToolStripTests.cs (19)
58Assert.Equal(ToolStripDropDownDirection.BelowRight, control.DefaultDropDownDirection); 215Assert.Equal(ToolStripDropDownDirection.BelowRight, control.DefaultDropDownDirection); 1754Assert.Equal(expected, control.DefaultDropDownDirection); 1781Assert.Equal(expected, control.DefaultDropDownDirection); 1885Assert.Equal(expected, control.DefaultDropDownDirection); 1917Assert.Equal(expected, control.DefaultDropDownDirection); 2021Assert.Equal(expected, control.DefaultDropDownDirection); 2141Assert.Equal(expected, control.DefaultDropDownDirection); 2163Assert.Equal(expected, control.DefaultDropDownDirection); 2168Assert.Equal(expected, control.DefaultDropDownDirection); 2186Assert.Equal(expected, control.DefaultDropDownDirection); 2194Assert.Equal(expected, control.DefaultDropDownDirection); 2204PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ToolStrip))[nameof(ToolStrip.DefaultDropDownDirection)]; 2209Assert.Equal(ToolStripDropDownDirection.Right, control.DefaultDropDownDirection); 2213Assert.Equal(ToolStripDropDownDirection.Right, control.DefaultDropDownDirection); 2220PropertyDescriptor property = TypeDescriptor.GetProperties(typeof(ToolStrip))[nameof(ToolStrip.DefaultDropDownDirection)]; 2225Assert.Equal(ToolStripDropDownDirection.Right, control.DefaultDropDownDirection); 2229Assert.Equal(ToolStripDropDownDirection.Right, control.DefaultDropDownDirection); 2233Assert.Equal(ToolStripDropDownDirection.BelowRight, control.DefaultDropDownDirection);