1234567891011121314151617181920212223242526272829 |
- using Prism.Commands;
- using Prism.Mvvm;
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Office.ViewModels.Tools
- {
- public class TextEditToolContentViewModel: BindableBase
- {
- private ComPDFKitViewer.PDFEditEvent TextEditEvent;
- public DelegateCommand<object> AddContentCommand { get; set; }
- public TextEditToolContentViewModel()
- {
- AddContentCommand = new DelegateCommand<object>(AddContent);
- }
- public void AddContent(object obj)
- {
- if(TextEditEvent != null)
- {
- }
- }
- }
- }
|