79 writes to ExStyle
System.Windows.Forms (70)
System\Windows\Forms\Control.cs (5)
1310cp.ExStyle = 0; 1322cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CONTROLPARENT; 1366cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_RTLREADING; 1367cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_RIGHT; 1368cp.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)
206cp.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)
623cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_LAYOUTRTL;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
680ExStyle = (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)
184cp.ExStyle |= (int)(WINDOW_EX_STYLE.WS_EX_LAYOUTRTL | WINDOW_EX_STYLE.WS_EX_NOINHERITLAYOUT); 185cp.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)
295cp.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)
10169cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_STATICEDGE;
System\Windows\Forms\ControlTests.Properties.cs (1)
6652cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_LAYOUTRTL;
System\Windows\Forms\CreateParamsTests.cs (2)
48ExStyle = value 138ExStyle = 11,
System\Windows\Forms\GroupBoxTests.cs (1)
951cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_STATICEDGE;
System\Windows\Forms\PanelTests.cs (1)
643cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_STATICEDGE;
139 references to ExStyle
System.Windows.Forms (20)
System\Windows\Forms\Control.cs (12)
371AdjustWindowRectExForControlDpi(ref rect, (WINDOW_STYLE)cp.Style, false, (WINDOW_EX_STYLE)cp.ExStyle); 2376SetState(States.Mirrored, (cp.ExStyle & (int)WINDOW_EX_STYLE.WS_EX_LAYOUTRTL) != 0); 4488SetState(States.Mirrored, (cp.ExStyle & (int)WINDOW_EX_STYLE.WS_EX_LAYOUTRTL) != 0); 4512Debug.Assert((cp.ExStyle & (int)WINDOW_EX_STYLE.WS_EX_MDICHILD) == 0, "Can't put MDI child forms on the parking form"); 5278AdjustWindowRectExForControlDpi(ref adornmentsAfterDpiChange, (WINDOW_STYLE)cp.Style, bMenu: false, (WINDOW_EX_STYLE)cp.ExStyle); 5282AdjustWindowRectExForDpi(ref adornmentsBeforeDpiChange, (WINDOW_STYLE)cp.Style, bMenu: false, (WINDOW_EX_STYLE)cp.ExStyle, _oldDeviceDpi); 9668AdjustWindowRectExForControlDpi(ref adornments, (WINDOW_STYLE)cp.Style, false, (WINDOW_EX_STYLE)cp.ExStyle); 10124AdjustWindowRectExForControlDpi(ref rect, (WINDOW_STYLE)cp.Style, false, (WINDOW_EX_STYLE)cp.ExStyle); 10753AdjustWindowRectExForControlDpi(ref rect, (WINDOW_STYLE)cp.Style, false, (WINDOW_EX_STYLE)cp.ExStyle); 10962if (currentExtendedStyle != (WINDOW_EX_STYLE)cp.ExStyle) 10964ExtendedWindowStyle = (WINDOW_EX_STYLE)cp.ExStyle; 10965SetState(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)
140Assert.Equal(0x10000, createParams.ExStyle);
System.Windows.Forms.Tests (117)
System\Windows\Forms\AxHostTests.cs (2)
236Assert.Equal(0, createParams.ExStyle); 276Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\ButtonBaseTests.cs (3)
133Assert.Equal(0, createParams.ExStyle); 166Assert.Equal(0, createParams.ExStyle); 236Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\ButtonTests.cs (4)
131Assert.Equal(0, createParams.ExStyle); 155Assert.Equal(0, createParams.ExStyle); 188Assert.Equal(0, createParams.ExStyle); 258Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\CheckBoxTests.cs (1)
134Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\ComboBoxTests.cs (1)
143Assert.Equal(0x200, createParams.ExStyle);
System\Windows\Forms\ContainerControlTests.cs (1)
134Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\ControlTests.cs (9)
506Assert.Equal(0, createParams.ExStyle); 530Assert.Equal(expectedExStyle, createParams.ExStyle); 556Assert.Equal(0, createParams.ExStyle); 581Assert.Equal(0, createParams.ExStyle); 607Assert.Equal(0, createParams.ExStyle); 629Assert.Equal(0, createParams.ExStyle); 656Assert.Equal(expectedExStyle, createParams.ExStyle); 682Assert.Equal(0, createParams.ExStyle); 708Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\CreateParamsTests.cs (1)
50Assert.Equal(value, createParams.ExStyle);
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
141Assert.Equal(0x200, createParams.ExStyle);
System\Windows\Forms\DateTimePickerTests.cs (1)
134Assert.Equal(0x200, createParams.ExStyle);
System\Windows\Forms\Design\ComponentEditorFormTests.cs (1)
177Assert.Equal(0x10001, createParams.ExStyle);
System\Windows\Forms\Design\ComponentEditorPageTests.cs (1)
137Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\DomainUpDownTests.cs (2)
169((WINDOW_EX_STYLE)createParams.ExStyle).Should().Be(WINDOW_EX_STYLE.WS_EX_CONTROLPARENT); 173((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)
129Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\FormTests.cs (1)
178Assert.Equal(0x50000, createParams.ExStyle);
System\Windows\Forms\GroupBoxTests.cs (2)
114Assert.Equal(0x10000, createParams.ExStyle); 142Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\HScrollBarTests.cs (1)
128Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\LabelTests.cs (1)
125Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\ListBoxTests.cs (8)
146Assert.Equal(0x200, createParams.ExStyle); 172Assert.Equal(0x200, createParams.ExStyle); 198Assert.Equal(0x200, createParams.ExStyle); 224Assert.Equal(0x200, createParams.ExStyle); 251Assert.Equal(expectedExStyle, createParams.ExStyle); 280Assert.Equal(0x200, createParams.ExStyle); 308Assert.Equal(0x200, createParams.ExStyle); 335Assert.Equal(0x200, createParams.ExStyle);
System\Windows\Forms\ListControlTests.cs (1)
122Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\ListViewTests.cs (1)
164Assert.Equal(0x200, createParams.ExStyle);
System\Windows\Forms\MonthCalendarTests.cs (1)
153Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\PanelTests.cs (2)
127Assert.Equal(0x10000, createParams.ExStyle); 153Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\PictureBoxTests.cs (1)
128Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\ProgressBarTests.cs (3)
114Assert.Equal(0, createParams.ExStyle); 153Assert.Equal(0, createParams.ExStyle); 182Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\PropertyGridTests.cs (1)
182Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\RadioButtonTests.cs (2)
131Assert.Equal(0, createParams.ExStyle); 155Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\RichTextBoxTests.cs (3)
148Assert.Equal(0x200, createParams.ExStyle); 174Assert.Equal(expectedExStyle, createParams.ExStyle); 228Assert.Equal(0x200, createParams.ExStyle);
System\Windows\Forms\ScrollableControlTests.cs (3)
127Assert.Equal(0x10000, createParams.ExStyle); 154Assert.Equal(0x10000, createParams.ExStyle); 181Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\ScrollBarTests.cs (1)
116Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\SplitterTests.cs (2)
114Assert.Equal(0, createParams.ExStyle); 141Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\StatusStripTests.cs (1)
163Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\TabControlTests.cs (9)
125Assert.Equal(0, createParams.ExStyle); 150Assert.Equal(0, createParams.ExStyle); 174Assert.Equal(0, createParams.ExStyle); 211Assert.Equal(0, createParams.ExStyle); 237Assert.Equal(0, createParams.ExStyle); 261Assert.Equal(0, createParams.ExStyle); 296Assert.Equal(0, createParams.ExStyle); 321Assert.Equal(0, createParams.ExStyle); 350Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\TableLayoutPanelTests.cs (1)
138Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\TabPageTests.cs (1)
243Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\ToolStripDropDownTests.cs (3)
170Assert.Equal(0x10000, createParams.ExStyle); 201Assert.Equal(0x10000, createParams.ExStyle); 235Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\ToolStripPanelTests.cs (1)
131Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\ToolStripTests.cs (1)
343Assert.Equal(0x10000, createParams.ExStyle);
System\Windows\Forms\ToolTipTests.cs (1)
87Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\TreeViewTests.cs (19)
141Assert.Equal(0x200, createParams.ExStyle); 169Assert.Equal(0x200, createParams.ExStyle); 199Assert.Equal(expectedExStyle, createParams.ExStyle); 225Assert.Equal(0x200, createParams.ExStyle); 251Assert.Equal(0x200, createParams.ExStyle); 277Assert.Equal(0x200, createParams.ExStyle); 303Assert.Equal(0x200, createParams.ExStyle); 329Assert.Equal(0x200, createParams.ExStyle); 355Assert.Equal(0x200, createParams.ExStyle); 381Assert.Equal(0x200, createParams.ExStyle); 407Assert.Equal(0x200, createParams.ExStyle); 433Assert.Equal(0x200, createParams.ExStyle); 466Assert.Equal(0x200, createParams.ExStyle); 499Assert.Equal(0x200, createParams.ExStyle); 545Assert.Equal(0x200, createParams.ExStyle); 591Assert.Equal(0x200, createParams.ExStyle); 619Assert.Equal(0x200, createParams.ExStyle); 652Assert.Equal(0x200, createParams.ExStyle); 685Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\UpDownBaseTests.cs (3)
152Assert.Equal(WINDOW_EX_STYLE.WS_EX_CONTROLPARENT, (WINDOW_EX_STYLE)createParams.ExStyle); 156Assert.Equal(WINDOW_EX_STYLE.WS_EX_CLIENTEDGE | WINDOW_EX_STYLE.WS_EX_CONTROLPARENT, (WINDOW_EX_STYLE)createParams.ExStyle); 188Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\UserControlTests.cs (2)
134Assert.Equal(0x10000, createParams.ExStyle); 160Assert.Equal(expectedExStyle, createParams.ExStyle);
System\Windows\Forms\VScrollBarTests.cs (1)
127Assert.Equal(0, createParams.ExStyle);
System\Windows\Forms\WebBrowserTests.cs (1)
110Assert.Equal(0, createParams.ExStyle);
TextBoxBaseTests.cs (5)
26Assert.Equal(0x200, createParams.ExStyle); 52Assert.Equal(0x200, createParams.ExStyle); 78Assert.Equal(0x200, createParams.ExStyle); 104Assert.Equal(expectedExStyle, createParams.ExStyle); 133Assert.Equal(0x200, createParams.ExStyle);
TextBoxTests.cs (1)
134Assert.Equal(0x200, createParams.ExStyle);
TrackBarTests.cs (4)
121Assert.Equal(0, createParams.ExStyle); 149Assert.Equal(0, createParams.ExStyle); 175Assert.Equal(0, createParams.ExStyle); 206Assert.Equal(expectedExStyle, createParams.ExStyle);
WindowsFormsIntegration (1)
System\Windows\Integration\ElementHost.cs (1)
579HWSParam.ExtendedWindowStyle = cp.ExStyle;