FreehandAnnotProperty.xaml.cs 1.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. using ComPDFKitViewer;
  2. using PDF_Master.ViewModels.PropertyPanel.AnnotPanel;
  3. using System;
  4. using System.Collections.Generic;
  5. using System.Linq;
  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.Navigation;
  16. using System.Windows.Shapes;
  17. namespace PDF_Master.Views.PropertyPanel.AnnotPanel
  18. {
  19. /// <summary>
  20. /// FreehandAnnotProperty.xaml 的交互逻辑
  21. /// </summary>
  22. public partial class FreehandAnnotProperty : UserControl
  23. {
  24. private FreehandAnnotPropertyViewModel ViewModel => DataContext as FreehandAnnotPropertyViewModel;
  25. public FreehandAnnotProperty()
  26. {
  27. InitializeComponent();
  28. }
  29. private void UserControl_Loaded(object sender, RoutedEventArgs e)
  30. {
  31. if (ViewModel != null && ViewModel.IsFirst)
  32. {
  33. ViewModel.IsFirst = false;
  34. ViewModel.BasicVm.CurrentFontColor = App.Current.FindResource("color.sys.layout.divider.pen") as Brush;
  35. ViewModel.BasicVm.FontColor = ViewModel.BasicVm.FontColor;
  36. }
  37. }
  38. }
  39. }