123456789101112131415161718192021222324252627282930313233343536373839404142434445464748 |
- using ComPDFKitViewer;
- using ComPDFKitViewer.PdfViewer;
- using PDF_Master.CustomControl.CompositeControl;
- using PDF_Master.Model.AnnotPanel;
- using PDF_Master.Model.PropertyPanel.AnnotPanel;
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Windows.Controls;
- using System.Windows.Input;
- using System.Windows.Media;
- namespace PDF_Master.ViewModels.PropertyPanel.PDFEdit
- {
- public class PDFEditVM: FontBoard
- {
-
- #region 变量
- protected PDFEditEvent TextEditEvent;
- protected CPDFViewer PDFViewer;
- #endregion
- #region 编辑PDF全局
- //平均对齐布局
- private bool _isLayoutAvgAlign = false;
- public bool IsLayoutAvgAlign { get { return _isLayoutAvgAlign; } set { SetProperty(ref _isLayoutAvgAlign, value); } }
- //对齐布局
- private bool _isLayoutAlign = false;
- public bool IsLayoutAlign { get { return _isLayoutAlign; } set { SetProperty(ref _isLayoutAlign, value); } }
- #endregion
- protected void SetPopMenuItem(MenuItem menu, object sender, ICommand command)
- {
- MenuItem menuItem = menu;
- menuItem.CommandTarget = (UIElement)sender;
- menuItem.Command = command;
- }
-
- }
- }
|