137 references to FixedHeight
System.Windows.Forms (20)
System\Windows\Forms\Control.cs (5)
5331if ((_controlStyle & ControlStyles.FixedHeight) != ControlStyles.FixedHeight && (specified & BoundsSpecified.Height) != 0) 9802if ((_controlStyle & ControlStyles.FixedHeight) != ControlStyles.FixedHeight) 9831if (!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)
835SetStyle(ControlStyles.FixedHeight | ControlStyles.FixedWidth, true); 841SetStyle(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)
89SetStyle(ControlStyles.FixedHeight, _autoSize); 95SetStyle(ControlStyles.FixedHeight, false); 379SetStyle(ControlStyles.FixedHeight, _autoSize); 385SetStyle(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)
198[InlineData(ControlStyles.FixedHeight, false)]
System.Windows.Forms.Tests (116)
System\Windows\Forms\ButtonBaseTests.cs (1)
5068[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ButtonTests.cs (1)
1774[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\CheckBoxTests.cs (1)
502[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ComboBoxTests.cs (1)
1460[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ContainerControlTests.cs (1)
518[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ControlTests.Methods.cs (4)
2746control.SetStyle(ControlStyles.FixedHeight, true); 2797control.SetStyle(ControlStyles.FixedHeight, true); 2813control.SetStyle(ControlStyles.FixedHeight, true); 2829[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
1105[InlineData(ControlStyles.FixedHeight, true)]
System\Windows\Forms\DateTimePickerTests.cs (1)
868[InlineData(ControlStyles.FixedHeight, true)]
System\Windows\Forms\Design\ComponentEditorFormTests.cs (1)
221[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\Design\ComponentEditorPageTests.cs (1)
683[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\DomainUpDownTests.cs (1)
1071[InlineData(ControlStyles.FixedHeight, true)]
System\Windows\Forms\FlowLayoutPanelTests.cs (1)
285[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\FormTests.cs (1)
2436[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\GroupBoxTests.cs (1)
1420[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\HScrollBarTests.cs (1)
215[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\LabelTests.cs (1)
152[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ListBoxTests.cs (1)
4904[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ListControlTests.cs (1)
2569[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ListViewTests.cs (1)
4261[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\MenuStripTests.cs (1)
518[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\MonthCalendarTests.cs (1)
3330[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\PanelTests.cs (1)
859[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\PictureBoxTests.cs (5)
1298Assert.Equal(expectedAutoSize, pictureBox.GetStyle(ControlStyles.FixedHeight | ControlStyles.FixedWidth)); 1304Assert.Equal(expectedAutoSize, pictureBox.GetStyle(ControlStyles.FixedHeight | ControlStyles.FixedWidth)); 1317Assert.Equal(expectedAutoSize, pictureBox.GetStyle(ControlStyles.FixedHeight | ControlStyles.FixedWidth)); 1323Assert.Equal(expectedAutoSize, pictureBox.GetStyle(ControlStyles.FixedHeight | ControlStyles.FixedWidth)); 1875[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ProgressBarTests.cs (1)
1804[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\PropertyGridTests.cs (1)
3480[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\RadioButtonTests.cs (1)
629[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\RichTextBoxTests.cs (22)
390Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 399Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 408Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 434Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 443Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 452Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 478Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 488Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 498Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2070Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2078Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2086Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2108Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 2116Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 2124Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 2147Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2157Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2167Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2211Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 2221Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 2231Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 8977[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ScrollableControlTests.cs (1)
1356[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ScrollBarTests.cs (1)
1868[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\SplitterTests.cs (1)
1647[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\StatusStripTests.cs (1)
1103[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\TabControlTests.cs (1)
3936[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\TableLayoutPanelTests.cs (1)
1175[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\TabPageTests.cs (1)
3781[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ToolStripContentPanelTests.cs (1)
1679[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ToolStripDropDownTests.cs (1)
3650[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ToolStripPanelTests.cs (1)
313[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\ToolStripTests.cs (1)
4928[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\TreeViewTests.cs (1)
5051[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\UpDownBaseTests.cs (1)
1688[InlineData(ControlStyles.FixedHeight, true)]
System\Windows\Forms\UserControlTests.cs (1)
903[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\VScrollBarTests.cs (1)
205[InlineData(ControlStyles.FixedHeight, false)]
System\Windows\Forms\WebBrowserTests.cs (1)
2822[InlineData(ControlStyles.FixedHeight, false)]
TextBoxBaseTests.cs (22)
218Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 227Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 236Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 256Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 266Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 276Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 303Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 313Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 323Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 1950Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 1958Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 1966Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 1982Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 1990Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 1998Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2030Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 2040Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 2050Assert.Equal(value, control.GetStyle(ControlStyles.FixedHeight)); 2082Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2092Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 2102Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 5148[InlineData(ControlStyles.FixedHeight, true)]
TextBoxTests.cs (1)
501[InlineData(ControlStyles.FixedHeight, true)]
TrackBarTests.cs (21)
232Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 241Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 250Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 270Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 279Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 288Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 312Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 324Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 336Assert.Equal(!value, control.GetStyle(ControlStyles.FixedHeight)); 366Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 378Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 390Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 1319Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 1327Assert.False(control.GetStyle(ControlStyles.FixedHeight)); 1353Assert.Equal(expectedFixedHeight, control.GetStyle(ControlStyles.FixedHeight)); 1361Assert.Equal(expectedFixedHeight, control.GetStyle(ControlStyles.FixedHeight)); 1393Assert.Equal(expectedFixedHeight, control.GetStyle(ControlStyles.FixedHeight)); 1404Assert.Equal(expectedFixedHeight, control.GetStyle(ControlStyles.FixedHeight)); 1440Assert.Equal(expectedFixedHeight, control.GetStyle(ControlStyles.FixedHeight)); 1451Assert.Equal(expectedFixedHeight, control.GetStyle(ControlStyles.FixedHeight)); 2279[InlineData(ControlStyles.FixedHeight, false)]
WebBrowserBaseTests.cs (1)
770[InlineData(ControlStyles.FixedHeight, false)]