DataEntryDocumentWindow.xaml.cs 1.0 KB

1234567891011121314151617181920212223242526272829303132333435363738
  1. using System;
  2. using System.Collections.Generic;
  3. using System.Collections.ObjectModel;
  4. using System.ComponentModel;
  5. using System.Linq;
  6. using System.Runtime.CompilerServices;
  7. using System.Text;
  8. using System.Threading.Tasks;
  9. using System.Windows;
  10. using System.Windows.Controls;
  11. using System.Windows.Data;
  12. using System.Windows.Documents;
  13. using System.Windows.Input;
  14. using System.Windows.Media;
  15. using System.Windows.Media.Imaging;
  16. using System.Windows.Shapes;
  17. namespace PRSDesktop.Panels.DataEntry;
  18. /// <summary>
  19. /// Interaction logic for DataEntryDocumentWindow.xaml
  20. /// </summary>
  21. public partial class DataEntryDocumentWindow : Window, INotifyPropertyChanged
  22. {
  23. public ObservableCollection<ImageSource> Images { get; set; } = new();
  24. public DataEntryDocumentWindow()
  25. {
  26. InitializeComponent();
  27. }
  28. public event PropertyChangedEventHandler? PropertyChanged;
  29. protected void OnPropertyChanged([CallerMemberName] string propertyName = "")
  30. {
  31. PropertyChanged?.Invoke(this, new PropertyChangedEventArgs(propertyName));
  32. }
  33. }