using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace PDF_Office.Model
{
///
/// 记录弹窗的名称
///
public static class DialogNames
{
///
/// 文档解密弹窗 需要传参PDFDocument对象
///
public static string VerifyPassWordDialog = "PassWordDialog";
///
/// 全屏模式弹窗
///
public static string FullScreenDialog = "FullScreenDialog";
///
/// 压缩弹窗
///
public static string CompressDialog = "CompressDialog";
///
/// 解压缩弹窗
///
public static string SetPasswordDialog = "SetPasswordDialog";
///
/// 解压缩弹窗
///
public static string CheckPasswordDialog = "CheckPasswordDialog";
///
/// 解压缩弹窗
///
public static string CancelPasswordDialog = "CancelPasswordDialog";
///
/// 进度条
///
public static string CompressProgressBarDialog = "CompressProgressBarDialog";
}
}