FreetextAnnotProperty.xaml.cs 825 B

12345678910111213141516171819202122232425262728293031
  1. using PDF_Office.CustomControl;
  2. using PDF_Office.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.Controls.Primitives;
  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.Navigation;
  17. using System.Windows.Shapes;
  18. namespace PDF_Office.Views.PropertyPanel.AnnotPanel
  19. {
  20. /// <summary>
  21. /// FreetextAnnotProperty.xaml 的交互逻辑
  22. /// </summary>
  23. public partial class FreetextAnnotProperty : UserControl
  24. {
  25. public FreetextAnnotProperty()
  26. {
  27. InitializeComponent();
  28. }
  29. }
  30. }