File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 4747 <ItemGroup >
4848 <Compile Include =" BaseCopyCommand.cs" />
4949 <Compile Include =" CopyIncludeCommand.cs" />
50+ <Compile Include =" FolderEditor.cs" />
5051 <Compile Include =" OptionPageGrid.cs" >
5152 <SubType >Component</SubType >
5253 </Compile >
Original file line number Diff line number Diff line change 1+ // Copyright (c) mere-human. All rights reserved.
2+ // Licensed under the MIT License. See License.txt in the project root for license information.
3+
4+ using System . Windows . Forms . Design ;
5+
6+ namespace CopyRelativePath
7+ {
8+ // Note: A better alternative could be CommonOpenFileDialog
9+ class FolderEditor : FolderNameEditor
10+ {
11+ protected override void InitializeDialog ( FolderBrowser folderBrowser )
12+ {
13+ base . InitializeDialog ( folderBrowser ) ;
14+ folderBrowser . Description = "Base Directory for Relative Path" ;
15+ }
16+ }
17+ }
Original file line number Diff line number Diff line change 1010
1111namespace CopyRelativePath
1212{
13- // Note: A better alternative could be CommonOpenFileDialog
14- internal class FolderEditor : FolderNameEditor
15- {
16- protected override void InitializeDialog ( FolderBrowser folderBrowser )
17- {
18- base . InitializeDialog ( folderBrowser ) ;
19- folderBrowser . Description = "Base Directory for Relative Path" ;
20- }
21- }
22-
2313 public class OptionPageGrid : DialogPage
2414 {
2515 public const string ExtensionName = "Copy Path Extension" ;
You can’t perform that action at this time.
0 commit comments