1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- 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";
- /// <summary>
- /// 解压缩弹窗
- /// </summary>
- public static string CompressDialog = "CompressDialog";
- /// <summary>
- /// 解压缩弹窗
- /// </summary>
- public static string SetPasswordDialog = "SetPasswordDialog";
- /// <summary>
- /// 解压缩弹窗
- /// </summary>
- public static string CheckPasswordDialog = "CheckPasswordDialog";
- /// <summary>
- /// 解压缩弹窗
- /// </summary>
- public static string CancelPasswordDialog = "CancelPasswordDialog";
- }
- }
|