123456789101112131415161718192021222324 |
- using PDF_Master.ViewModels.EditTools.Bates;
- using System.Windows.Controls;
- namespace PDF_Master.Views.EditTools.Bates
- {
- /// <summary>
- /// Interaction logic for BatesDocumentContent
- /// </summary>
- public partial class BatesDocumentContent : UserControl
- {
- public BatesDocumentContent()
- {
- InitializeComponent();
- }
- private void CurrentPageIndexBox_KeyDown(object sender, System.Windows.Input.KeyEventArgs e)
- {
- if (e.Key == System.Windows.Input.Key.Enter)
- {
- var data = this.DataContext as BatesDocumentContentViewModel;
- data.GoToPageCommand?.Execute(sender);
- }
- }
- }
- }
|