1 write to openFileDialog1
WinFormsControlsTest (1)
ListViewTest.Designer.cs (1)
46this.openFileDialog1 = new System.Windows.Forms.OpenFileDialog();
9 references to openFileDialog1
WinFormsControlsTest (9)
ListViewTest.cs (6)
242if (openFileDialog1.ShowDialog() != DialogResult.OK) 247foreach (string file in openFileDialog1.FileNames) 270openFileDialog1.Multiselect = false; 271DialogResult result = openFileDialog1.ShowDialog(); 272openFileDialog1.Multiselect = true; 279string file = openFileDialog1.FileName;
ListViewTest.Designer.cs (3)
135this.openFileDialog1.FileName = "openFileDialog1"; 136this.openFileDialog1.Multiselect = true; 137this.openFileDialog1.SupportMultiDottedExtensions = true;