137 references to FixedHeight
System.Windows.Forms (20)
System\Windows\Forms\Control.cs (5)
5453if ((_controlStyle & ControlStyles.FixedHeight) != ControlStyles.FixedHeight && (specified & BoundsSpecified.Height) != 0) 10079if ((_controlStyle & ControlStyles.FixedHeight) != ControlStyles.FixedHeight) 10113if (!GetStyle(ControlStyles.FixedHeight))
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
115SetStyle(ControlStyles.FixedHeight, true);
System\Windows\Forms\Controls\Labels\Label.cs (1)
72SetStyle(ControlStyles.FixedHeight |
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (2)
836SetStyle(ControlStyles.FixedHeight | ControlStyles.FixedWidth, true); 842SetStyle(ControlStyles.FixedHeight | ControlStyles.FixedWidth, false);
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (4)
95SetStyle(ControlStyles.FixedHeight, _textBoxFlags[s_autoSize]); 267SetStyle(ControlStyles.FixedHeight, value); 733SetStyle(ControlStyles.FixedHeight, false); 738SetStyle(ControlStyles.FixedHeight, AutoSize);
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (4)
90SetStyle(ControlStyles.FixedHeight, _autoSize); 96SetStyle(ControlStyles.FixedHeight, false); 380SetStyle(ControlStyles.FixedHeight, _autoSize); 386SetStyle(ControlStyles.FixedHeight, false);
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
67SetStyle(ControlStyles.Opaque | ControlStyles.FixedHeight | ControlStyles.ResizeRedraw, true);
System\Windows\Forms\Controls\UpDown\UpDownBase.UpDownButtons.cs (1)
35SetStyle(ControlStyles.Opaque | ControlStyles.FixedHeight | ControlStyles.FixedWidth, true);
System\Windows\Forms\Controls\UpDown\UpDownBase.UpDownEdit.cs (1)
17SetStyle(ControlStyles.FixedHeight | ControlStyles.FixedWidth, true);
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\ByteViewerTests.cs (1)
196[InlineData(ControlStyles.FixedHeight, false)]
System.Windows.Forms.Tests (116)
System\Windows\Forms\ButtonBaseTests.cs (1)
5066[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ButtonTests.cs (1)
1772[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\CheckBoxTests.cs (1)
500[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ComboBoxTests.cs (1)
1459[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ContainerControlTests.cs (1)
516[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ControlTests.Methods.cs (4)
2777control.SetStyle(ControlStyles.FixedHeight, true); 2828control.SetStyle(ControlStyles.FixedHeight, true); 2844control.SetStyle(ControlStyles.FixedHeight, true); 2860[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
1103[InlineData(ControlStyles.FixedHeight, true)]
System\Windows\Forms\DateTimePickerTests.cs (1)
866[InlineData(ControlStyles.FixedHeight, true)]
System\Windows\Forms\Design\ComponentEditorFormTests.cs (1)
219[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\Design\ComponentEditorPageTests.cs (1)
681[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\DomainUpDownTests.cs (1)
1069[InlineData(ControlStyles.FixedHeight, true)]
System\Windows\Forms\FlowLayoutPanelTests.cs (1)
283[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\FormTests.cs (1)
2434[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\GroupBoxTests.cs (1)
1418[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\HScrollBarTests.cs (1)
213[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\LabelTests.cs (1)
150[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ListBoxTests.cs (1)
4902[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ListControlTests.cs (1)
2567[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ListViewTests.cs (1)
4259[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\MenuStripTests.cs (1)
516[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\MonthCalendarTests.cs (1)
3328[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\PanelTests.cs (1)
857[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\PictureBoxTests.cs (5)
1296Assert.Equal(expectedAutoSize, pictureBox.GetStyle(ControlStyles.FixedHeight | ControlStyles.FixedWidth)); 1302Assert.Equal(expectedAutoSize, pictureBox.GetStyle(ControlStyles.FixedHeight | ControlStyles.FixedWidth)); 1315Assert.Equal(expectedAutoSize, pictureBox.GetStyle(ControlStyles.FixedHeight | ControlStyles.FixedWidth)); 1321Assert.Equal(expectedAutoSize, pictureBox.GetStyle(ControlStyles.FixedHeight | ControlStyles.FixedWidth)); 1873[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ProgressBarTests.cs (1)
1802[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\PropertyGridTests.cs (1)
3478[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\RadioButtonTests.cs (1)
627[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\RichTextBoxTests.cs (22)
388Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 397Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 406Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 432Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 441Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 450Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 476Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 486Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 496Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2068Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2076Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2084Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2106Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 2114Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 2122Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 2145Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2155Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2165Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2209Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 2219Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 2229Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 8975[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ScrollableControlTests.cs (1)
1354[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ScrollBarTests.cs (1)
1866[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\SplitterTests.cs (1)
1645[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\StatusStripTests.cs (1)
1101[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\TabControlTests.cs (1)
3934[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\TableLayoutPanelTests.cs (1)
1173[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\TabPageTests.cs (1)
3779[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ToolStripContentPanelTests.cs (1)
1677[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ToolStripDropDownTests.cs (1)
3648[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ToolStripPanelTests.cs (1)
311[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ToolStripTests.cs (1)
4926[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\TreeViewTests.cs (1)
5049[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\UpDownBaseTests.cs (1)
1686[InlineData(ControlStyles.FixedHeight, true)]
System\Windows\Forms\UserControlTests.cs (1)
901[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\VScrollBarTests.cs (1)
203[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\WebBrowserTests.cs (1)
2820[InlineData(ControlStyles.FixedHeight, false)]
TextBoxBaseTests.cs (22)
216Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 225Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 234Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 254Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 264Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 274Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 301Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 311Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 321Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 1948Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 1956Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 1964Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 1980Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 1988Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 1996Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2028Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 2038Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 2048Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 2080Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2090Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2100Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 5146[InlineData(ControlStyles.FixedHeight, true)]
TextBoxTests.cs (1)
499[InlineData(ControlStyles.FixedHeight, true)]
TrackBarTests.cs (21)
230Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 239Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 248Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 268Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 277Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 286Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 310Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 322Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 334Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 364Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 376Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 388Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 1317Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 1325Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 1351Assert.Equal(expectedFixedHeight, control.GetStyle(ControlStyles.FixedHeight)); 1359Assert.Equal(expectedFixedHeight, control.GetStyle(ControlStyles.FixedHeight)); 1391Assert.Equal(expectedFixedHeight, control.GetStyle(ControlStyles.FixedHeight)); 1402Assert.Equal(expectedFixedHeight, control.GetStyle(ControlStyles.FixedHeight)); 1438Assert.Equal(expectedFixedHeight, control.GetStyle(ControlStyles.FixedHeight)); 1449Assert.Equal(expectedFixedHeight, control.GetStyle(ControlStyles.FixedHeight)); 2277[InlineData(ControlStyles.FixedHeight, false)]
WebBrowserBaseTests.cs (1)
768[InlineData(ControlStyles.FixedHeight, false)]