|
|
|
@ -268,7 +268,8 @@ namespace CSharpBinding.OptionPanels |
|
|
|
private void ChangeOutputPathExecute() |
|
|
|
private void ChangeOutputPathExecute() |
|
|
|
{ |
|
|
|
{ |
|
|
|
OutputPath.Value = OptionsHelper.BrowseForFolder("${res:Dialog.Options.PrjOptions.Configuration.FolderBrowserDescription}", |
|
|
|
OutputPath.Value = OptionsHelper.BrowseForFolder("${res:Dialog.Options.PrjOptions.Configuration.FolderBrowserDescription}", |
|
|
|
base.BaseDirectory,base.BaseDirectory,outputPathTextBox.Text); |
|
|
|
base.BaseDirectory,base.BaseDirectory, |
|
|
|
|
|
|
|
outputPathTextBox.Text,TextBoxEditMode.EditRawProperty); |
|
|
|
base.RaisePropertyChanged(()=> OutputPath); |
|
|
|
base.RaisePropertyChanged(()=> OutputPath); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -319,7 +320,8 @@ namespace CSharpBinding.OptionPanels |
|
|
|
private void BaseIntermediateOutputPathExecute () |
|
|
|
private void BaseIntermediateOutputPathExecute () |
|
|
|
{ |
|
|
|
{ |
|
|
|
BaseIntermediateOutputPath.Value = OptionsHelper.BrowseForFolder("${res:Dialog.Options.PrjOptions.Configuration.FolderBrowserDescription}", |
|
|
|
BaseIntermediateOutputPath.Value = OptionsHelper.BrowseForFolder("${res:Dialog.Options.PrjOptions.Configuration.FolderBrowserDescription}", |
|
|
|
base.BaseDirectory,base.BaseDirectory,this.baseIntermediateOutputPathTextBox.Text); |
|
|
|
base.BaseDirectory,base.BaseDirectory, |
|
|
|
|
|
|
|
this.baseIntermediateOutputPathTextBox.Text,TextBoxEditMode.EditRawProperty); |
|
|
|
base.RaisePropertyChanged(()=> BaseIntermediateOutputPath); |
|
|
|
base.RaisePropertyChanged(()=> BaseIntermediateOutputPath); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@ -337,7 +339,8 @@ namespace CSharpBinding.OptionPanels |
|
|
|
private void IntermediateOutputPathExecute () |
|
|
|
private void IntermediateOutputPathExecute () |
|
|
|
{ |
|
|
|
{ |
|
|
|
IntermediateOutputPath.Value = OptionsHelper.BrowseForFolder("${res:Dialog.Options.PrjOptions.Configuration.FolderBrowserDescription}", |
|
|
|
IntermediateOutputPath.Value = OptionsHelper.BrowseForFolder("${res:Dialog.Options.PrjOptions.Configuration.FolderBrowserDescription}", |
|
|
|
base.BaseDirectory,base.BaseDirectory,this.intermediateOutputPathTextBox.Text); |
|
|
|
base.BaseDirectory,base.BaseDirectory, |
|
|
|
|
|
|
|
this.intermediateOutputPathTextBox.Text,TextBoxEditMode.EditRawProperty); |
|
|
|
base.RaisePropertyChanged(()=> IntermediateOutputPath); |
|
|
|
base.RaisePropertyChanged(()=> IntermediateOutputPath); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|