12 writes to BorderStyle
System.Windows.Forms.Tests (6)
System\Windows\Forms\PictureBoxTests.cs (6)
124BorderStyle = borderStyle 147BorderStyle = value 152pictureBox.BorderStyle = value; 163pictureBox.BorderStyle = value; 167pictureBox.BorderStyle = value; 176Assert.Throws<InvalidEnumArgumentException>("value", () => pictureBox.BorderStyle = value);
System.Windows.Forms.UI.IntegrationTests (1)
DragDropTests.cs (1)
969PictureBoxDragSource.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)
35Assert.Equal(BorderStyle.None, control.BorderStyle); 149Assert.Equal(value, pictureBox.BorderStyle); 153Assert.Equal(value, pictureBox.BorderStyle); 164Assert.Equal(value, pictureBox.BorderStyle); 168Assert.Equal(value, pictureBox.BorderStyle);