63 writes to Capture
System.Windows.Forms (38)
System\Windows\Forms\Control.cs (2)
11383Capture = true; 11574Capture = false;
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
829Capture = false;
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (9)
1586Capture = true; 1603Capture = true; 1620Capture = true; 1635Capture = true; 1670Capture = false; 1680Capture = true; 1695Capture = true; 1710Capture = false; 3719Capture = false;
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
3382Capture = true; 25585Capture = false;
System\Windows\Forms\Controls\Labels\LinkLabel.cs (2)
855Capture = true; 882Capture = false;
System\Windows\Forms\Controls\ListView\ListView.cs (4)
6680Capture = true; 6944Capture = true; 6994Capture = false; 7017Capture = false;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (2)
687Capture = false; 2962Capture = true;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.DropDownHolder.cs (2)
399Capture = true; 500Capture = false;
System\Windows\Forms\Controls\Splitter\Splitter.cs (2)
912Capture = true; 924Capture = false;
System\Windows\Forms\Controls\ToolStrips\ToolStrip.cs (1)
3324Capture = true;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (2)
1616Capture = true; 1729Capture = false;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (1)
691toolStripToDrag.Capture = true;
System\Windows\Forms\Controls\TreeView\TreeView.cs (3)
3255Capture = true; 3349Capture = false; 3381Capture = true;
System\Windows\Forms\Controls\UpDown\UpDownBase.UpDownButtons.cs (2)
75Capture = true; 99Capture = false;
System\Windows\Forms\Form.cs (1)
7115Capture = false;
System\Windows\Forms\Layout\Containers\SplitContainer.cs (2)
1181Capture = false; 2099Capture = true;
System.Windows.Forms.Design (18)
System\Windows\Forms\Design\Behavior\BehaviorService.AdornerWindow.MouseHook.cs (1)
106_currentAdornerWindow!.Capture = false;
System\Windows\Forms\Design\Behavior\BehaviorService.cs (2)
404_adornerWindow.Capture = false; 450_adornerWindow.Capture = true;
System\Windows\Forms\Design\ComponentTray.cs (9)
650Capture = false; 654Capture = false; 1266Capture = true; 1333Capture = false; 2097Capture = false; 2133Capture = false; 2160Capture = true; 2244Capture = false; 2255Capture = false;
System\Windows\Forms\Design\ControlDesigner.cs (2)
1315Control.Capture = true; 1324Control.Capture = false;
System\Windows\Forms\Design\ParentControlDesigner.cs (2)
1723control.Capture = true; 1776Control.Capture = false;
System\Windows\Forms\Design\SelectionUIService.cs (2)
110Capture = true; 194Capture = false;
System.Windows.Forms.Tests (7)
System\Windows\Forms\CheckBoxTests.cs (1)
817control.Capture = capture;
System\Windows\Forms\ControlTests.Properties.cs (6)
3132Capture = value 3138control.Capture = value; 3143control.Capture = !value; 3161control.Capture = value; 3169control.Capture = value; 3177control.Capture = !value;
97 references to Capture
System.Windows.Forms (10)
System\Windows\Forms\Control.cs (1)
1057if (Capture == value)
System\Windows\Forms\Controls\Buttons\CheckBox.cs (1)
497if (Capture)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
3708bool captured = Capture;
System\Windows\Forms\Controls\ListBoxes\ListBox.cs (2)
2421bool captured = Capture; 2462if (Capture && PInvoke.WindowFromPoint(PointToScreen((Point)m.LParamInternal)) == HWND)
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (2)
1614if (OwnerToolStrip.Capture) 1727if (Capture)
System\Windows\Forms\Controls\UpDown\UpDownBase.UpDownButtons.cs (2)
142if (Capture) 398if (!Capture)
System\Windows\Forms\Form.cs (1)
7113if (Capture && MouseButtons == MouseButtons.None)
System.Windows.Forms.Design.Tests (1)
System\ComponentModel\Design\ByteViewerTests.cs (1)
40Assert.False(control.Capture);
System.Windows.Forms.Tests (86)
System\Windows\Forms\AxHostTests.cs (2)
47Assert.False(control.Capture); 141Assert.False(control.Capture);
System\Windows\Forms\ButtonBaseTests.cs (11)
39Assert.False(control.Capture); 6038Assert.False(control.Capture); 6045Assert.False(control.Capture); 6073Assert.False(control.Capture); 6083Assert.False(control.Capture); 8898Assert.False(control.Capture); 8934Assert.False(control.Capture); 8963Assert.False(control.Capture); 9004Assert.False(control.Capture); 9048Assert.False(control.Capture); 9085Assert.False(control.Capture);
System\Windows\Forms\ButtonTests.cs (1)
41Assert.False(control.Capture);
System\Windows\Forms\CheckBoxTests.cs (1)
40Assert.False(control.Capture);
System\Windows\Forms\ComboBoxTests.cs (1)
44Assert.False(control.Capture);
System\Windows\Forms\ContainerControlTests.cs (1)
46Assert.False(control.Capture);
System\Windows\Forms\ControlTests.cs (5)
34Assert.False(control.Capture); 123Assert.False(control.Capture); 219Assert.False(control.Capture); 315Assert.False(control.Capture); 411Assert.False(control.Capture);
System\Windows\Forms\ControlTests.Methods.cs (12)
13493Assert.True(control.Capture); 13529Assert.True(control.Capture); 13562Assert.True(control.Capture); 13603Assert.True(control.Capture); 13647Assert.True(control.Capture); 13688Assert.True(control.Capture); 13828Assert.False(control.Capture); 13864Assert.False(control.Capture); 13893Assert.False(control.Capture); 13934Assert.False(control.Capture); 13978Assert.False(control.Capture); 14015Assert.False(control.Capture);
System\Windows\Forms\ControlTests.Properties.cs (6)
3134Assert.Equal(value, control.Capture); 3139Assert.Equal(value, control.Capture); 3144Assert.Equal(!value, control.Capture); 3162Assert.Equal(value, control.Capture); 3170Assert.Equal(value, control.Capture); 3178Assert.Equal(!value, control.Capture);
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
44Assert.False(control.Capture);
System\Windows\Forms\DateTimePickerTests.cs (1)
47Assert.False(control.Capture);
System\Windows\Forms\Design\ComponentEditorFormTests.cs (1)
54Assert.False(control.Capture);
System\Windows\Forms\Design\ComponentEditorPageTests.cs (1)
41Assert.False(control.Capture);
System\Windows\Forms\FlowLayoutPanelTests.cs (1)
40Assert.False(control.Capture);
System\Windows\Forms\FormTests.cs (1)
52Assert.False(control.Capture);
System\Windows\Forms\GroupBoxTests.cs (1)
37Assert.False(control.Capture);
System\Windows\Forms\HScrollBarTests.cs (1)
37Assert.False(control.Capture);
System\Windows\Forms\LabelTests.cs (1)
37Assert.False(control.Capture);
System\Windows\Forms\ListBoxTests.cs (1)
38Assert.False(control.Capture);
System\Windows\Forms\ListControlTests.cs (1)
38Assert.False(control.Capture);
System\Windows\Forms\ListViewTests.cs (1)
45Assert.False(control.Capture);
System\Windows\Forms\MdiClientTests.cs (1)
34Assert.False(control.Capture);
System\Windows\Forms\MenuStripTests.cs (1)
41Assert.False(control.Capture);
System\Windows\Forms\MonthCalendarTests.cs (1)
46Assert.False(control.Capture);
System\Windows\Forms\PanelTests.cs (1)
41Assert.False(control.Capture);
System\Windows\Forms\PictureBoxTests.cs (1)
40Assert.False(control.Capture);
System\Windows\Forms\ProgressBarTests.cs (1)
36Assert.False(control.Capture);
System\Windows\Forms\PropertyGridTests.cs (1)
55Assert.False(control.Capture);
System\Windows\Forms\RadioButtonTests.cs (1)
40Assert.False(control.Capture);
System\Windows\Forms\RichTextBoxTests.cs (1)
51Assert.False(control.Capture);
System\Windows\Forms\ScrollableControlTests.cs (1)
40Assert.False(control.Capture);
System\Windows\Forms\ScrollBarTests.cs (1)
35Assert.False(control.Capture);
System\Windows\Forms\SplitterPanelTests.cs (1)
45Assert.False(control.Capture);
System\Windows\Forms\SplitterTests.cs (1)
36Assert.False(control.Capture);
System\Windows\Forms\StatusStripTests.cs (1)
41Assert.False(control.Capture);
System\Windows\Forms\TabControlTests.cs (1)
38Assert.False(control.Capture);
System\Windows\Forms\TableLayoutPanelTests.cs (1)
42Assert.False(control.Capture);
System\Windows\Forms\TabPageTests.cs (2)
45Assert.False(control.Capture); 154Assert.False(control.Capture);
System\Windows\Forms\ToolStripContentPanelTests.cs (1)
43Assert.False(control.Capture);
System\Windows\Forms\ToolStripDropDownTests.cs (1)
45Assert.False(control.Capture);
System\Windows\Forms\ToolStripPanelTests.cs (1)
42Assert.False(control.Capture);
System\Windows\Forms\ToolStripTests.cs (2)
45Assert.False(control.Capture); 201Assert.False(control.Capture);
System\Windows\Forms\TreeViewTests.cs (1)
36Assert.False(control.Capture);
System\Windows\Forms\UserControlTests.cs (1)
46Assert.False(control.Capture);
System\Windows\Forms\VScrollBarTests.cs (1)
36Assert.False(control.Capture);
TextBoxBaseTests.cs (6)
7281Assert.True(control.Capture); 7317Assert.True(control.Capture); 7350Assert.True(control.Capture); 7391Assert.True(control.Capture); 7435Assert.True(control.Capture); 7476Assert.True(control.Capture);
TextBoxTests.cs (1)
43Assert.False(control.Capture);
TrackBarTests.cs (1)
37Assert.False(control.Capture);