24 references to WS_EX_CLIENTEDGE
System.Windows.Forms (19)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
350cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\DateTimePicker\DateTimePicker.cs (1)
409cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (1)
291cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\ListView\ListView.cs (1)
663cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\PictureBox\PictureBox.cs (1)
203cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
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)
210cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE; 215cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\TextBox\TextBoxBase.cs (2)
419cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE; 424cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\TreeView\TreeView.cs (1)
322cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Controls\UpDown\UpDownBase.cs (1)
228cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Form.cs (1)
3645cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\MDI\MDIClient.cs (1)
92cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\Panels\Panel.cs (2)
125cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE; 130cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System\Windows\Forms\UserControl.cs (2)
161cp.ExStyle &= ~(int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE; 166cp.ExStyle |= (int)WINDOW_EX_STYLE.WS_EX_CLIENTEDGE;
System.Windows.Forms.Primitives.Tests (1)
System\Windows\Forms\Automation\UiaTextProviderTests.cs (1)
62Assert.True(actual.HasFlag(WINDOW_EX_STYLE.WS_EX_CLIENTEDGE));
System.Windows.Forms.Primitives.TestUtilities (1)
Win32\EditControl.cs (1)
14WINDOW_EX_STYLE extendedStyle = WINDOW_EX_STYLE.WS_EX_CLIENTEDGE | WINDOW_EX_STYLE.WS_EX_LEFT | WINDOW_EX_STYLE.WS_EX_LTRREADING,
System.Windows.Forms.Tests (3)
System\Windows\Forms\DomainUpDownTests.cs (1)
175((WINDOW_EX_STYLE)createParams.ExStyle).Should().Be(WINDOW_EX_STYLE.WS_EX_CLIENTEDGE | WINDOW_EX_STYLE.WS_EX_CONTROLPARENT);
System\Windows\Forms\TextBoxBase.TextBoxBaseUiaTextProviderTests.cs (1)
574Assert.Equal(WINDOW_EX_STYLE.WS_EX_CLIENTEDGE, actual);
System\Windows\Forms\UpDownBaseTests.cs (1)
158Assert.Equal(WINDOW_EX_STYLE.WS_EX_CLIENTEDGE | WINDOW_EX_STYLE.WS_EX_CONTROLPARENT, (WINDOW_EX_STYLE)createParams.ExStyle);