12 writes to BorderStyle
System.Windows.Forms.Tests (6)
System\Windows\Forms\PictureBoxTests.cs (6)
122BorderStyle = borderStyle 145BorderStyle = value 150pictureBox.BorderStyle = value; 161pictureBox.BorderStyle = value; 165pictureBox.BorderStyle = value; 174Assert.Throws<InvalidEnumArgumentException>("value", () => pictureBox.BorderStyle = value);
System.Windows.Forms.UI.IntegrationTests (1)
DragDropTests.cs (1)
910PictureBoxDragSource.BorderStyle = BorderStyle.FixedSingle;
WinFormsControlsTest (5)
DragDrop.Designer.cs (5)
107pictureBox1.BorderStyle = BorderStyle.FixedSingle; 118pictureBox2.BorderStyle = BorderStyle.FixedSingle; 129pictureBox3.BorderStyle = BorderStyle.FixedSingle; 140pictureBox4.BorderStyle = BorderStyle.FixedSingle; 151pictureBox5.BorderStyle = BorderStyle.FixedSingle;
6 references to BorderStyle
System.Windows.Forms.Design (1)
System\Windows\Forms\Design\PictureBoxDesigner.cs (1)
69if (pictureBox.BorderStyle == BorderStyle.None)
System.Windows.Forms.Tests (5)
System\Windows\Forms\PictureBoxTests.cs (5)
33Assert.Equal(BorderStyle.None, control.BorderStyle); 147Assert.Equal(value, pictureBox.BorderStyle); 151Assert.Equal(value, pictureBox.BorderStyle); 162Assert.Equal(value, pictureBox.BorderStyle); 166Assert.Equal(value, pictureBox.BorderStyle);