79 writes to ExStyle
System.Windows.Forms (70)
System\Windows\Forms\Control.cs (5)
1309cp.ExStyle = 0; 1321cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CONTROLPARENT; 1365cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_RTLREADING; 1366cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_RIGHT; 1367cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_LEFTSCROLLBAR;
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
265cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_RIGHT;
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
336cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (3)
409cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE; 414cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_LAYOUTRTL; 416cp.ExStyle &= ~(int)(WINDOW_EX_STYLE.WS_EX_RTLREADING | WINDOW_EX_STYLE.WS_EX_RIGHT | WINDOW_EX_STYLE.WS_EX_LEFTSCROLLBAR);
System\Windows\Forms\Controls\GroupBox\GroupBox.cs (1)
128cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CONTROLPARENT;
System\Windows\Forms\Controls\Labels\Label.cs (1)
262cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_RIGHT; // WS_EX_RIGHT overrides the SS_XXXX alignment styles
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
293cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\ListView\ListView.cs (3)
661cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE; 727cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_LAYOUTRTL; 729cp.ExStyle &= ~(int)(WINDOW_EX_STYLE.WS_EX_RTLREADING | WINDOW_EX_STYLE.WS_EX_RIGHT | WINDOW_EX_STYLE.WS_EX_LEFTSCROLLBAR);
System\Windows\Forms\Controls\MonthCalendar\MonthCalendar.cs (2)
311cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_LAYOUTRTL; 314cp.ExStyle &= ~(int)(WINDOW_EX_STYLE.WS_EX_RTLREADING | WINDOW_EX_STYLE.WS_EX_RIGHT | WINDOW_EX_STYLE.WS_EX_LEFTSCROLLBAR);
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (1)
205cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\ProgressBar\ProgressBar.cs (2)
66cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_LAYOUTRTL; 69cp.ExStyle &= ~(int)(WINDOW_EX_STYLE.WS_EX_RTLREADING | WINDOW_EX_STYLE.WS_EX_RIGHT | WINDOW_EX_STYLE.WS_EX_LEFTSCROLLBAR);
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\GridToolTip.cs (1)
90ExStyle = 0,
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.DropDownHolder.cs (1)
73cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_TOOLWINDOW;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.GridViewListBox.cs (1)
28cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\RichTextBox\RichTextBox.cs (1)
315cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\Splitter\Splitter.cs (2)
211cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE; 216cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\TabControl\TabControl.cs (2)
339cp.ExStyle |= (int)(WINDOW_EX_STYLE.WS_EX_LAYOUTRTL | WINDOW_EX_STYLE.WS_EX_NOINHERITLAYOUT); 341cp.ExStyle &= ~(int)(WINDOW_EX_STYLE.WS_EX_RTLREADING | WINDOW_EX_STYLE.WS_EX_RIGHT | WINDOW_EX_STYLE.WS_EX_LEFTSCROLLBAR);
System\Windows\Forms\Controls\TextBox\MaskedTextBox.cs (1)
317cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_RIGHT; // WS_EX_RIGHT overrides the ES_XXXX alignment styles
System\Windows\Forms\Controls\TextBox\TextBox.cs (1)
289cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_RIGHT;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (2)
418cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE; 423cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\ToolStrips\StatusStrip.cs (1)
631cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_LAYOUTRTL;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
677ExStyle = (int)WINDOW_EX_STYLE.WS_EX_TOOLWINDOW
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (3)
222cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_APPWINDOW; 224cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CONTROLPARENT; 231cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_LAYERED;
System\Windows\Forms\Controls\TrackBar\TrackBar.cs (2)
183cp.ExStyle |= (int)(WINDOW_EX_STYLE.WS_EX_LAYOUTRTL | WINDOW_EX_STYLE.WS_EX_NOINHERITLAYOUT); 184cp.ExStyle &= ~(int)(WINDOW_EX_STYLE.WS_EX_RTLREADING | WINDOW_EX_STYLE.WS_EX_RIGHT | WINDOW_EX_STYLE.WS_EX_LEFTSCROLLBAR);
System\Windows\Forms\Controls\TreeView\TreeView.cs (3)
324cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE; 397cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_LAYOUTRTL; 399cp.ExStyle &= ~(int)(WINDOW_EX_STYLE.WS_EX_RTLREADING | WINDOW_EX_STYLE.WS_EX_RIGHT | WINDOW_EX_STYLE.WS_EX_LEFTSCROLLBAR);
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
230cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Design\ComponentEditorForm.PageSelector.cs (1)
48cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_STATICEDGE;
System\Windows\Forms\Form.cs (13)
777cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_LAYERED; 791cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_APPWINDOW; 797cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_DLGMODALFRAME; 820cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_MDICHILD; 844cp.ExStyle |= (int)(WINDOW_EX_STYLE.WS_EX_LAYOUTRTL | WINDOW_EX_STYLE.WS_EX_NOINHERITLAYOUT); 846cp.ExStyle &= ~(int)(WINDOW_EX_STYLE.WS_EX_RTLREADING | WINDOW_EX_STYLE.WS_EX_RIGHT | WINDOW_EX_STYLE.WS_EX_LEFTSCROLLBAR); 1936ExStyle = (int)WINDOW_EX_STYLE.WS_EX_TOOLWINDOW 3568cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CONTEXTHELP; 3572cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_CONTEXTHELP; 3594cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE; 3598cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_DLGMODALFRAME; 3602cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_TOOLWINDOW; 3606cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_TOOLWINDOW;
System\Windows\Forms\Layout\Containers\ContainerControl.cs (1)
294cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CONTROLPARENT;
System\Windows\Forms\MDI\MDIClient.cs (3)
96cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE; 112cp.ExStyle |= (int)(WINDOW_EX_STYLE.WS_EX_LAYOUTRTL | WINDOW_EX_STYLE.WS_EX_NOINHERITLAYOUT); 114cp.ExStyle &= ~(int)(WINDOW_EX_STYLE.WS_EX_RTLREADING | WINDOW_EX_STYLE.WS_EX_RIGHT | WINDOW_EX_STYLE.WS_EX_LEFTSCROLLBAR);
System\Windows\Forms\Panels\Panel.cs (3)
128cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CONTROLPARENT; 129cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE; 134cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Timer.cs (1)
218ExStyle = 0,
System\Windows\Forms\ToolTip\ToolTip.cs (1)
227cp.ExStyle = 0;
System\Windows\Forms\UserControl.cs (3)
160cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CONTROLPARENT; 161cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE; 166cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System.Windows.Forms.Design (3)
System\ComponentModel\Design\DesignerActionPanel.EditorPropertyLine.FlyoutDialog.cs (1)
62cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_TOOLWINDOW;
System\Windows\Forms\Design\Behavior\BehaviorService.AdornerWindow.cs (1)
43cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_TRANSPARENT;
System\Windows\Forms\Design\ToolStripAdornerWindowService.cs (1)
186cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_TRANSPARENT;
System.Windows.Forms.Tests (6)
System\Windows\Forms\ControlTests.Methods.cs (1)
10138cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_STATICEDGE;
System\Windows\Forms\ControlTests.Properties.cs (1)
6654cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_LAYOUTRTL;
System\Windows\Forms\CreateParamsTests.cs (2)
50ExStyle = value 140ExStyle = 11,
System\Windows\Forms\GroupBoxTests.cs (1)
953cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_STATICEDGE;
System\Windows\Forms\PanelTests.cs (1)
645cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_STATICEDGE;
139 references to ExStyle
System.Windows.Forms (20)
System\Windows\Forms\Control.cs (12)
370AdjustWindowRectExForControlDpi(ref rect, (WINDOW_STYLE)cp.Style, false, (WINDOW_EX_STYLE)cp.ExStyle); 2375SetState(States.Mirrored, (cp.ExStyle & (int)WINDOW_EX_STYLE.WS_EX_LAYOUTRTL) != 0); 4487SetState(States.Mirrored, (cp.ExStyle & (int)WINDOW_EX_STYLE.WS_EX_LAYOUTRTL) != 0); 4511Debug.Assert((cp.ExStyle & (int)WINDOW_EX_STYLE.WS_EX_MDICHILD) == 0, "Can't put MDI child forms on the parking form"); 5312AdjustWindowRectExForControlDpi(ref adornmentsAfterDpiChange, (WINDOW_STYLE)cp.Style, bMenu: false, (WINDOW_EX_STYLE)cp.ExStyle); 5316AdjustWindowRectExForDpi(ref adornmentsBeforeDpiChange, (WINDOW_STYLE)cp.Style, bMenu: false, (WINDOW_EX_STYLE)cp.ExStyle, _oldDeviceDpi); 9702AdjustWindowRectExForControlDpi(ref adornments, (WINDOW_STYLE)cp.Style, false, (WINDOW_EX_STYLE)cp.ExStyle); 10150AdjustWindowRectExForControlDpi(ref rect, (WINDOW_STYLE)cp.Style, false, (WINDOW_EX_STYLE)cp.ExStyle); 10779AdjustWindowRectExForControlDpi(ref rect, (WINDOW_STYLE)cp.Style, false, (WINDOW_EX_STYLE)cp.ExStyle); 10988if (currentExtendedStyle != (WINDOW_EX_STYLE)cp.ExStyle) 10990ExtendedWindowStyle = (WINDOW_EX_STYLE)cp.ExStyle; 10991SetState(States.Mirrored, ((WINDOW_EX_STYLE)cp.ExStyle).HasFlag(WINDOW_EX_STYLE.WS_EX_LAYOUTRTL));
System\Windows\Forms\Controls\ToolStrips\ToolStripTextBox.ToolStripTextBoxControl.cs (1)
33AdjustWindowRectExForControlDpi(ref rect, (WINDOW_STYLE)cp.Style, false, (WINDOW_EX_STYLE)cp.ExStyle);
System\Windows\Forms\CreateParams.cs (1)
72return $"CreateParams {{'{ClassName}', '{Caption}', 0x{Style:x}, 0x{ExStyle:x}, {{{X}, {Y}, {Width}, {Height}}}}}";
System\Windows\Forms\Form.cs (4)
1600if ((int)ExtendedWindowStyle != cp.ExStyle) 1602PInvokeCore.SetWindowLong(this, WINDOW_LONG_PTR_INDEX.GWL_EXSTYLE, cp.ExStyle); 3208return ComputeWindowSize(clientSize, (WINDOW_STYLE)cp.Style, (WINDOW_EX_STYLE)cp.ExStyle); 3620Size correct = ComputeWindowSize(ClientSize, (WINDOW_STYLE)maskedStyle, (WINDOW_EX_STYLE)cp.ExStyle);
System\Windows\Forms\MDI\MDIClient.cs (1)
287AdjustWindowRectExForControlDpi(ref rect, (WINDOW_STYLE)cp.Style, false, (WINDOW_EX_STYLE)cp.ExStyle);
System\Windows\Forms\NativeWindow.cs (1)
440(WINDOW_EX_STYLE)cp.ExStyle,
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\ByteViewerTests.cs (1)
142Assert.Equal(0x10000, createParams.ExStyle);
System.Windows.Forms.Tests (117)
System\Windows\Forms\AxHostTests.cs (2)
238Assert.Equal(0, createParams.ExStyle); 278Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\ButtonBaseTests.cs (3)
135Assert.Equal(0, createParams.ExStyle); 168Assert.Equal(0, createParams.ExStyle); 238Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\ButtonTests.cs (4)
133Assert.Equal(0, createParams.ExStyle); 157Assert.Equal(0, createParams.ExStyle); 190Assert.Equal(0, createParams.ExStyle); 260Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\CheckBoxTests.cs (1)
136Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\ComboBoxTests.cs (1)
145Assert.Equal(0x200, createParams.ExStyle);
System\Windows\Forms\ContainerControlTests.cs (1)
136Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\ControlTests.cs (9)
508Assert.Equal(0, createParams.ExStyle); 532Assert.Equal(expectedExStyle, createParams.ExStyle); 558Assert.Equal(0, createParams.ExStyle); 583Assert.Equal(0, createParams.ExStyle); 609Assert.Equal(0, createParams.ExStyle); 631Assert.Equal(0, createParams.ExStyle); 658Assert.Equal(expectedExStyle, createParams.ExStyle); 684Assert.Equal(0, createParams.ExStyle); 710Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\CreateParamsTests.cs (1)
52Assert.Equal(value, createParams.ExStyle);
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
143Assert.Equal(0x200, createParams.ExStyle);
System\Windows\Forms\DateTimePickerTests.cs (1)
136Assert.Equal(0x200, createParams.ExStyle);
System\Windows\Forms\Design\ComponentEditorFormTests.cs (1)
179Assert.Equal(0x10001, createParams.ExStyle);
System\Windows\Forms\Design\ComponentEditorPageTests.cs (1)
139Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\DomainUpDownTests.cs (2)
171((WINDOW_EX_STYLE)createParams.ExStyle).Should().Be(WINDOW_EX_STYLE.WS_EX_CONTROLPARENT); 175((WINDOW_EX_STYLE)createParams.ExStyle).Should().Be(WINDOW_EX_STYLE.WS_EX_CLIENTEDGE | WINDOW_EX_STYLE.WS_EX_CONTROLPARENT);
System\Windows\Forms\FlowLayoutPanelTests.cs (1)
131Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\FormTests.cs (1)
180Assert.Equal(0x50000, createParams.ExStyle);
System\Windows\Forms\GroupBoxTests.cs (2)
116Assert.Equal(0x10000, createParams.ExStyle); 144Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\HScrollBarTests.cs (1)
130Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\LabelTests.cs (1)
127Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\ListBoxTests.cs (8)
148Assert.Equal(0x200, createParams.ExStyle); 174Assert.Equal(0x200, createParams.ExStyle); 200Assert.Equal(0x200, createParams.ExStyle); 226Assert.Equal(0x200, createParams.ExStyle); 253Assert.Equal(expectedExStyle, createParams.ExStyle); 282Assert.Equal(0x200, createParams.ExStyle); 310Assert.Equal(0x200, createParams.ExStyle); 337Assert.Equal(0x200, createParams.ExStyle);
System\Windows\Forms\ListControlTests.cs (1)
124Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\ListViewTests.cs (1)
166Assert.Equal(0x200, createParams.ExStyle);
System\Windows\Forms\MonthCalendarTests.cs (1)
155Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\PanelTests.cs (2)
129Assert.Equal(0x10000, createParams.ExStyle); 155Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\PictureBoxTests.cs (1)
130Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\ProgressBarTests.cs (3)
116Assert.Equal(0, createParams.ExStyle); 155Assert.Equal(0, createParams.ExStyle); 184Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\PropertyGridTests.cs (1)
184Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\RadioButtonTests.cs (2)
133Assert.Equal(0, createParams.ExStyle); 157Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\RichTextBoxTests.cs (3)
150Assert.Equal(0x200, createParams.ExStyle); 176Assert.Equal(expectedExStyle, createParams.ExStyle); 230Assert.Equal(0x200, createParams.ExStyle);
System\Windows\Forms\ScrollableControlTests.cs (3)
129Assert.Equal(0x10000, createParams.ExStyle); 156Assert.Equal(0x10000, createParams.ExStyle); 183Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\ScrollBarTests.cs (1)
118Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\SplitterTests.cs (2)
116Assert.Equal(0, createParams.ExStyle); 143Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\StatusStripTests.cs (1)
165Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\TabControlTests.cs (9)
127Assert.Equal(0, createParams.ExStyle); 152Assert.Equal(0, createParams.ExStyle); 176Assert.Equal(0, createParams.ExStyle); 213Assert.Equal(0, createParams.ExStyle); 239Assert.Equal(0, createParams.ExStyle); 263Assert.Equal(0, createParams.ExStyle); 298Assert.Equal(0, createParams.ExStyle); 323Assert.Equal(0, createParams.ExStyle); 352Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\TableLayoutPanelTests.cs (1)
140Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\TabPageTests.cs (1)
245Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\ToolStripDropDownTests.cs (3)
172Assert.Equal(0x10000, createParams.ExStyle); 203Assert.Equal(0x10000, createParams.ExStyle); 237Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\ToolStripPanelTests.cs (1)
133Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\ToolStripTests.cs (1)
345Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\ToolTipTests.cs (1)
89Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\TreeViewTests.cs (19)
143Assert.Equal(0x200, createParams.ExStyle); 171Assert.Equal(0x200, createParams.ExStyle); 201Assert.Equal(expectedExStyle, createParams.ExStyle); 227Assert.Equal(0x200, createParams.ExStyle); 253Assert.Equal(0x200, createParams.ExStyle); 279Assert.Equal(0x200, createParams.ExStyle); 305Assert.Equal(0x200, createParams.ExStyle); 331Assert.Equal(0x200, createParams.ExStyle); 357Assert.Equal(0x200, createParams.ExStyle); 383Assert.Equal(0x200, createParams.ExStyle); 409Assert.Equal(0x200, createParams.ExStyle); 435Assert.Equal(0x200, createParams.ExStyle); 468Assert.Equal(0x200, createParams.ExStyle); 501Assert.Equal(0x200, createParams.ExStyle); 547Assert.Equal(0x200, createParams.ExStyle); 593Assert.Equal(0x200, createParams.ExStyle); 621Assert.Equal(0x200, createParams.ExStyle); 654Assert.Equal(0x200, createParams.ExStyle); 687Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\UpDownBaseTests.cs (3)
154Assert.Equal(WINDOW_EX_STYLE.WS_EX_CONTROLPARENT, (WINDOW_EX_STYLE)createParams.ExStyle); 158Assert.Equal(WINDOW_EX_STYLE.WS_EX_CLIENTEDGE | WINDOW_EX_STYLE.WS_EX_CONTROLPARENT, (WINDOW_EX_STYLE)createParams.ExStyle); 190Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\UserControlTests.cs (2)
136Assert.Equal(0x10000, createParams.ExStyle); 162Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\VScrollBarTests.cs (1)
129Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\WebBrowserTests.cs (1)
112Assert.Equal(0, createParams.ExStyle);
TextBoxBaseTests.cs (5)
28Assert.Equal(0x200, createParams.ExStyle); 54Assert.Equal(0x200, createParams.ExStyle); 80Assert.Equal(0x200, createParams.ExStyle); 106Assert.Equal(expectedExStyle, createParams.ExStyle); 135Assert.Equal(0x200, createParams.ExStyle);
TextBoxTests.cs (1)
136Assert.Equal(0x200, createParams.ExStyle);
TrackBarTests.cs (4)
123Assert.Equal(0, createParams.ExStyle); 151Assert.Equal(0, createParams.ExStyle); 177Assert.Equal(0, createParams.ExStyle); 208Assert.Equal(expectedExStyle, createParams.ExStyle);
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
573ExtendedWindowStyle = cp.ExStyle,