資源簡介
對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;
評論
共有 條評論