DataEntryDocumentWindow.xaml.cs 1.0 KB

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