1 write to _toolStripEditorControl
System.Windows.Forms.Design.Tests (1)
System\Windows\Forms\Design\ToolStripEditorManagerTests.cs (1)
54_toolStripEditorControl = _constructor.Invoke([_editorControl, _bounds]);
10 references to _toolStripEditorControl
System.Windows.Forms.Design.Tests (10)
System\Windows\Forms\Design\ToolStripEditorManagerTests.cs (10)
100_editorManager.TestAccessor().Dynamic._editor = _toolStripEditorControl; 106_behaviorService.AdornerWindowControl.Controls.Cast<Control>().Should().NotContain((Control)_toolStripEditorControl); 167_editorManager.TestAccessor().Dynamic._editor = _toolStripEditorControl; 178VerifyProperty("Bounds1", _toolStripEditorControl, _bounds); 179VerifyProperty(nameof(Location), _toolStripEditorControl, new Point(_bounds.X, _bounds.Y)); 180VerifyProperty(nameof(Text), _toolStripEditorControl, "InSituEditorWrapper"); 181VerifyProperty(nameof(Size), _toolStripEditorControl, new Size(_editorControl.Size.Width, _editorControl.Size.Height)); 182_toolStripEditorControlType?.GetProperty("Controls")?.GetValue(_toolStripEditorControl).Should().BeOfType<Control.ControlCollection>(); 201boundsProperty.SetValue(_toolStripEditorControl, newBounds); 202Rectangle? actualBounds = boundsProperty.GetValue(_toolStripEditorControl) as Rectangle?;