8 instantiations of FileDialogCustomPlace
System.Windows.Forms.Primitives (2)
System\Windows\Forms\FileDialogCustomPlacesCollection.cs (2)
23public void Add(string? path) => Add(new FileDialogCustomPlace(path)); 25public void Add(Guid knownFolderGuid) => Add(new FileDialogCustomPlace(knownFolderGuid));
System.Windows.Forms.Primitives.Tests (6)
System\Windows\Forms\FileDialogCustomPlaceTests.cs (6)
23FileDialogCustomPlace place = new(path); 42FileDialogCustomPlace place = new(knownFolderGuid); 51FileDialogCustomPlace place = new("path") 68FileDialogCustomPlace place = new(Guid.NewGuid()) 83yield return new object[] { new FileDialogCustomPlace("path"), "System.Windows.Forms.FileDialogCustomPlace Path: path KnownFolderGuid: 00000000-0000-0000-0000-000000000000" }; 84yield return new object[] { new FileDialogCustomPlace(new Guid(1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11)), "System.Windows.Forms.FileDialogCustomPlace Path: KnownFolderGuid: 00000001-0002-0003-0405-060708090a0b" };
10 references to FileDialogCustomPlace
System.Windows.Forms (1)
Properties\TypeForwards.cs (1)
8[assembly: TypeForwardedTo(typeof(System.Windows.Forms.FileDialogCustomPlace))]
System.Windows.Forms.Primitives (2)
System\Windows\Forms\FileDialogCustomPlacesCollection.cs (2)
8public class FileDialogCustomPlacesCollection : Collection<FileDialogCustomPlace> 14FileDialogCustomPlace customPlace = Items[i];
System.Windows.Forms.Primitives.Tests (7)
System\Windows\Forms\FileDialogCustomPlacesCollectionTests.cs (2)
27FileDialogCustomPlace place = Assert.Single(collection); 50FileDialogCustomPlace place = Assert.Single(collection);
System\Windows\Forms\FileDialogCustomPlaceTests.cs (5)
23FileDialogCustomPlace place = new(path); 42FileDialogCustomPlace place = new(knownFolderGuid); 51FileDialogCustomPlace place = new("path") 68FileDialogCustomPlace place = new(Guid.NewGuid()) 89public void FileDialogCustomPlace_ToString_Invoke_ReturnsExpected(FileDialogCustomPlace place, string expected)