63 writes to Capture
System.Windows.Forms (38)
System\Windows\Forms\Control.cs (2)
11414Capture = true; 11605Capture = false;
System\Windows\Forms\Controls\Buttons\ButtonBase.cs (1)
829Capture = false;
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (9)
1587Capture = true; 1604Capture = true; 1621Capture = true; 1636Capture = true; 1671Capture = false; 1681Capture = true; 1696Capture = true; 1711Capture = false; 3720Capture = false;
System\Windows\Forms\Controls\DataGridView\DataGridView.Methods.cs (2)
3381Capture = true; 25604Capture = false;
System\Windows\Forms\Controls\Labels\LinkLabel.cs (2)
855Capture = true; 882Capture = false;
System\Windows\Forms\Controls\ListView\ListView.cs (4)
6684Capture = true; 6948Capture = true; 6998Capture = false; 7021Capture = false;
System\Windows\Forms\Controls\PropertyGrid\PropertyGridInternal\PropertyGridView.cs (2)
687Capture = false; 2963Capture = 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)
3322Capture = true;
System\Windows\Forms\Controls\ToolStrips\ToolStripDropDown.cs (2)
1613Capture = true; 1726Capture = false;
System\Windows\Forms\Controls\ToolStrips\ToolStripPanel.cs (1)
683toolStripToDrag.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)
1724control.Capture = true; 1777Control.Capture = false;
System\Windows\Forms\Design\SelectionUIService.cs (2)
110Capture = true; 194Capture = false;
System.Windows.Forms.Tests (7)
System\Windows\Forms\CheckBoxTests.cs (1)
819control.Capture = capture;
System\Windows\Forms\ControlTests.Properties.cs (6)
3134Capture = value 3140control.Capture = value; 3145control.Capture = !value; 3163control.Capture = value; 3171control.Capture = value; 3179control.Capture = !value;
97 references to Capture
System.Windows.Forms (10)
System\Windows\Forms\Control.cs (1)
1056if (Capture == value)
System\Windows\Forms\Controls\Buttons\CheckBox.cs (1)
497if (Capture)
System\Windows\Forms\Controls\ComboBox\ComboBox.cs (1)
3709bool 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)
1611if (OwnerToolStrip.Capture) 1724if (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)
42Assert.False(control.Capture);
System.Windows.Forms.Tests (86)
System\Windows\Forms\AxHostTests.cs (2)
49Assert.False(control.Capture); 143Assert.False(control.Capture);
System\Windows\Forms\ButtonBaseTests.cs (11)
41Assert.False(control.Capture); 6040Assert.False(control.Capture); 6047Assert.False(control.Capture); 6075Assert.False(control.Capture); 6085Assert.False(control.Capture); 8900Assert.False(control.Capture); 8936Assert.False(control.Capture); 8965Assert.False(control.Capture); 9006Assert.False(control.Capture); 9050Assert.False(control.Capture); 9087Assert.False(control.Capture);
System\Windows\Forms\ButtonTests.cs (1)
43Assert.False(control.Capture);
System\Windows\Forms\CheckBoxTests.cs (1)
42Assert.False(control.Capture);
System\Windows\Forms\ComboBoxTests.cs (1)
46Assert.False(control.Capture);
System\Windows\Forms\ContainerControlTests.cs (1)
48Assert.False(control.Capture);
System\Windows\Forms\ControlTests.cs (5)
36Assert.False(control.Capture); 125Assert.False(control.Capture); 221Assert.False(control.Capture); 317Assert.False(control.Capture); 413Assert.False(control.Capture);
System\Windows\Forms\ControlTests.Methods.cs (12)
13462Assert.True(control.Capture); 13498Assert.True(control.Capture); 13531Assert.True(control.Capture); 13572Assert.True(control.Capture); 13616Assert.True(control.Capture); 13657Assert.True(control.Capture); 13797Assert.False(control.Capture); 13833Assert.False(control.Capture); 13862Assert.False(control.Capture); 13903Assert.False(control.Capture); 13947Assert.False(control.Capture); 13984Assert.False(control.Capture);
System\Windows\Forms\ControlTests.Properties.cs (6)
3136Assert.Equal(value, control.Capture); 3141Assert.Equal(value, control.Capture); 3146Assert.Equal(!value, control.Capture); 3164Assert.Equal(value, control.Capture); 3172Assert.Equal(value, control.Capture); 3180Assert.Equal(!value, control.Capture);
System\Windows\Forms\DataGridViewTextBoxEditingControlTests.cs (1)
46Assert.False(control.Capture);
System\Windows\Forms\DateTimePickerTests.cs (1)
49Assert.False(control.Capture);
System\Windows\Forms\Design\ComponentEditorFormTests.cs (1)
56Assert.False(control.Capture);
System\Windows\Forms\Design\ComponentEditorPageTests.cs (1)
43Assert.False(control.Capture);
System\Windows\Forms\FlowLayoutPanelTests.cs (1)
42Assert.False(control.Capture);
System\Windows\Forms\FormTests.cs (1)
54Assert.False(control.Capture);
System\Windows\Forms\GroupBoxTests.cs (1)
39Assert.False(control.Capture);
System\Windows\Forms\HScrollBarTests.cs (1)
39Assert.False(control.Capture);
System\Windows\Forms\LabelTests.cs (1)
39Assert.False(control.Capture);
System\Windows\Forms\ListBoxTests.cs (1)
40Assert.False(control.Capture);
System\Windows\Forms\ListControlTests.cs (1)
40Assert.False(control.Capture);
System\Windows\Forms\ListViewTests.cs (1)
47Assert.False(control.Capture);
System\Windows\Forms\MdiClientTests.cs (1)
36Assert.False(control.Capture);
System\Windows\Forms\MenuStripTests.cs (1)
43Assert.False(control.Capture);
System\Windows\Forms\MonthCalendarTests.cs (1)
48Assert.False(control.Capture);
System\Windows\Forms\PanelTests.cs (1)
43Assert.False(control.Capture);
System\Windows\Forms\PictureBoxTests.cs (1)
42Assert.False(control.Capture);
System\Windows\Forms\ProgressBarTests.cs (1)
38Assert.False(control.Capture);
System\Windows\Forms\PropertyGridTests.cs (1)
57Assert.False(control.Capture);
System\Windows\Forms\RadioButtonTests.cs (1)
42Assert.False(control.Capture);
System\Windows\Forms\RichTextBoxTests.cs (1)
53Assert.False(control.Capture);
System\Windows\Forms\ScrollableControlTests.cs (1)
42Assert.False(control.Capture);
System\Windows\Forms\ScrollBarTests.cs (1)
37Assert.False(control.Capture);
System\Windows\Forms\SplitterPanelTests.cs (1)
47Assert.False(control.Capture);
System\Windows\Forms\SplitterTests.cs (1)
38Assert.False(control.Capture);
System\Windows\Forms\StatusStripTests.cs (1)
43Assert.False(control.Capture);
System\Windows\Forms\TabControlTests.cs (1)
40Assert.False(control.Capture);
System\Windows\Forms\TableLayoutPanelTests.cs (1)
44Assert.False(control.Capture);
System\Windows\Forms\TabPageTests.cs (2)
47Assert.False(control.Capture); 156Assert.False(control.Capture);
System\Windows\Forms\ToolStripContentPanelTests.cs (1)
45Assert.False(control.Capture);
System\Windows\Forms\ToolStripDropDownTests.cs (1)
47Assert.False(control.Capture);
System\Windows\Forms\ToolStripPanelTests.cs (1)
44Assert.False(control.Capture);
System\Windows\Forms\ToolStripTests.cs (2)
47Assert.False(control.Capture); 203Assert.False(control.Capture);
System\Windows\Forms\TreeViewTests.cs (1)
38Assert.False(control.Capture);
System\Windows\Forms\UserControlTests.cs (1)
48Assert.False(control.Capture);
System\Windows\Forms\VScrollBarTests.cs (1)
38Assert.False(control.Capture);
TextBoxBaseTests.cs (6)
7283Assert.True(control.Capture); 7319Assert.True(control.Capture); 7352Assert.True(control.Capture); 7393Assert.True(control.Capture); 7437Assert.True(control.Capture); 7478Assert.True(control.Capture);
TextBoxTests.cs (1)
45Assert.False(control.Capture);
TrackBarTests.cs (1)
39Assert.False(control.Capture);