diff --git a/CorrectionViewModel.cs b/CorrectionViewModel.cs index 888249c..10ffb11 100644 --- a/CorrectionViewModel.cs +++ b/CorrectionViewModel.cs @@ -24,6 +24,12 @@ public class ExportOptionsViewModel : INotifyPropertyChanged } // Korrekturrand – RadioButtons mapped auf int + public bool IsCorrectionMarginMore + { + get => correctionMargin == 150; + set { if (value) { correctionMargin = 150; OnPropertyChanged(); } } + } + public bool IsCorrectionMarginHalf { get => correctionMargin == 100; diff --git a/ExportOptions.axaml b/ExportOptions.axaml index 1ccec5f..c810fd4 100644 --- a/ExportOptions.axaml +++ b/ExportOptions.axaml @@ -18,8 +18,9 @@ - + +