我正在C#4.0中创建一个按钮。我想点击这个按钮,我想在adobe reader里面打开一个对话框。所以我也在使用itextsharp。请让我知道我必须使用什么来使这个对话框工作?
PushbuttonField button1 = new PushbuttonField(
stamper.Writer,
new Rectangle(90, 660, 140, 690), "Add Context");
button1.Text = "Add Context";
答案 0 :(得分:0)
假设您继承自the base Button
class,您可以这样做:
this.button1.Click += new EventHandler(button1_Click);
//there you have an event:
private void button1_Click(object sender, EventArgs e)
{
//open the dialog box here...
}
答案 1 :(得分:0)
button1.Text = "Add Context";
button1.Click += new EventHandler(button_Click);
protected void button_Click (object sender, EventArgs e)
{
// perform necessary actions
}
答案 2 :(得分:0)
之前的答案与问题不符。
问题是关于PDF文件中的按钮。当有人点击此按钮时,需要打开一个对话框。
答案是关于C#应用程序中的按钮。这种应用程序中的按钮与Adobe Reader中的按钮之间存在巨大差异。
目前的措辞无法回答这个问题,因为不清楚你想用Adobe Reader中的对话框做什么。如果您想要一条简单的警报消息,那很容易实现。如果您希望可以创建一个C#应用程序中具有相同功能级别的对话框,请忘记这个想法:您可能会问一些完全不可能的事情。