123456789101112131415161718192021222324 |
- using System;
- using System.Collections.Generic;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- namespace PDF_Office.Model
- {
- /// <summary>
- /// 记录弹窗的名称
- /// </summary>
- public static class DialogNames
- {
- /// <summary>
- /// 文档解密弹窗 需要传参PDFDocument对象
- /// </summary>
- public static string VerifyPassWordDialog = "PassWordDialog";
- /// <summary>
- /// 全屏模式弹窗
- /// </summary>
- public static string FullScreenDialog = "FullScreenDialog";
- }
- }
|