资源简介

对PDF文件进行加密、分割、合并。


资源截图

代码片段和文件信息

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;

namespace PDFMergeAndSplitTool
{
    public partial class PasswordSet : Form
    {
        public string Password;
        public PasswordSet()
        {
            InitializeComponent();
        }

        private void btnSet_Click(object sender EventArgs e)
        {
            Password = this.txtBoxPassword.Text;
            this.DialogResult = DialogResult.OK;
        }

        public void SetDialogInformation(string title string ButtonTxt string pwdText)
        {
            this.Text = title;
            this.lblPassword.Text = pwdText;

评论

共有 条评论

相关资源