|
@@ -33,8 +33,11 @@ namespace PDF_Master.Views.Dialog.HomePageToolsDialogs.HomePagePrinter
|
|
|
comboBoxItem.Content = App.MainPageLoader.GetString("WritableComboBox_CurrentPage");
|
|
|
PageRangeComboBox.writableComboBox.Items.Insert(1, comboBoxItem);
|
|
|
}
|
|
|
- if (!string.IsNullOrEmpty( ((HomePagePrinterDialogViewModel)this.DataContext).PageListString))
|
|
|
- PageRangeComboBox.writableTextBox.Text = ((HomePagePrinterDialogViewModel)this.DataContext).PageListString;
|
|
|
+ if (!string.IsNullOrEmpty(((HomePagePrinterDialogViewModel)this.DataContext).PageListString))
|
|
|
+ {
|
|
|
+ PageRangeComboBox.writableComboBox .SelectedIndex= ((HomePagePrinterDialogViewModel)this.DataContext).PageRangeSelectIndex ;
|
|
|
+ PageRangeComboBox.writableTextBox.Text = ((HomePagePrinterDialogViewModel)this.DataContext).PageListString;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
|