Rename output settings to be more descriptive
This commit is contained in:
@@ -10,7 +10,7 @@
|
||||
-this sort of works, something is wrong with the upgrade process where the UUID is not brought over properly; need to test and fix (maybe fixed already and my dataset is wrong?)
|
||||
*-add dropdown to Add Items button to have add items from folder and remove choose working folder option (data always saved internally)
|
||||
-not going to do this; they can always select multiple items from the current picker
|
||||
-Now that the BaseFolder is always internal...update options for PDF output location
|
||||
*-Now that the BaseFolder is always internal...update options for PDF output location
|
||||
-output in internal dir (default)
|
||||
-always ask me every time (opens save file picker after generating PDF to ask user where they want it)
|
||||
-always put in X folder (uses existing option)
|
||||
|
||||
@@ -37,22 +37,28 @@
|
||||
HorizontalAlignment="Left"
|
||||
Margin="0,0,0,4" />
|
||||
<CheckBox IsChecked="{Binding !UseDocnetPDFImageRendering}">Use legacy PDF handling (does not work with macOS annotations)</CheckBox>
|
||||
<StackPanel Spacing="0">
|
||||
<StackPanel Spacing="4">
|
||||
<Label HorizontalAlignment="Left">
|
||||
Save created PDF Report in the following location:
|
||||
</Label>
|
||||
<RadioButton Content="MayShow application directory"
|
||||
IsChecked="{Binding PDFOutputSaveLocation,
|
||||
<RadioButton IsChecked="{Binding PDFOutputSaveLocation,
|
||||
Converter={StaticResource EnumToBoolConverter},
|
||||
ConverterParameter={x:Static enums:PDFSaveLocation.BaseFolder}}" />
|
||||
<RadioButton Content="Ask me where to save the PDF file every time"
|
||||
IsChecked="{Binding PDFOutputSaveLocation,
|
||||
ConverterParameter={x:Static enums:PDFSaveLocation.BaseFolder}}">
|
||||
<TextBlock TextWrapping="Wrap"
|
||||
Text="MayShow application directory (uses report title as file name)"/>
|
||||
</RadioButton>
|
||||
<RadioButton IsChecked="{Binding PDFOutputSaveLocation,
|
||||
Converter={StaticResource EnumToBoolConverter},
|
||||
ConverterParameter={x:Static enums:PDFSaveLocation.AlwaysAsk}}" />
|
||||
<RadioButton Content="Always save PDF file in the same folder of my choice"
|
||||
IsChecked="{Binding PDFOutputSaveLocation,
|
||||
ConverterParameter={x:Static enums:PDFSaveLocation.AlwaysAsk}}">
|
||||
<TextBlock TextWrapping="Wrap"
|
||||
Text="Ask me where and with what file name I want to save the PDF file every time"/>
|
||||
</RadioButton>
|
||||
<RadioButton IsChecked="{Binding PDFOutputSaveLocation,
|
||||
Converter={StaticResource EnumToBoolConverter},
|
||||
ConverterParameter={x:Static enums:PDFSaveLocation.OtherChosenDir}}" />
|
||||
ConverterParameter={x:Static enums:PDFSaveLocation.OtherChosenDir}}">
|
||||
<TextBlock TextWrapping="Wrap"
|
||||
Text="Always save PDF file in the same folder of my choice (uses report title as file name)"/>
|
||||
</RadioButton>
|
||||
</StackPanel>
|
||||
<Grid ColumnDefinitions="Auto, *"
|
||||
IsVisible="{Binding SaveOutputPdfInChosenDir}">
|
||||
|
||||
Reference in New Issue
Block a user