我完全遵循这个:
http://msdn.microsoft.com/en-us/library/ms185301.aspx
但无法让它发挥作用。当我尝试添加新项目时会出现该表单,但是当我输入文本并单击按钮时,没有任何反应。
为了后人的缘故,这是我的代码:
Wizard类中的非空方法,它扩展了IWizard
public void RunStarted(object automationObject,
Dictionary<string, string> replacementsDictionary,
WizardRunKind runKind, object[] customParams)
{
try
{
// Display a form to the user. The form collects
// input for the custom message.
inputForm = new UserInputForm();
inputForm.ShowDialog();
customMessage = inputForm.get_CustomMessage();
// Add custom parameters.
replacementsDictionary.Add("$custommessage$",
customMessage);
}
catch (Exception ex)
{
MessageBox.Show(ex.ToString());
}
}
// This method is only called for item templates,
// not for project templates.
public bool ShouldAddProjectItem(string filePath)
{
return true;
}
用户输入表单代码:
public partial class UserInputForm : Form
{
private string customMessage;
public UserInputForm()
{
InitializeComponent();
}
public string get_CustomMessage()
{
return customMessage;
}
private void button1_Click(object sender, EventArgs e)
{
customMessage = textBox1.Text;
this.Dispose();
}
}
按钮的确名为按钮1:
this.button1.Location = new System.Drawing.Point(200, 180);
this.button1.Name = "button1";
this.button1.Size = new System.Drawing.Size(100, 40);
this.button1.TabIndex = 0;
this.button1.Text = "Click Me";
this.button1.UseVisualStyleBackColor = true;
所以我没有太多使用Windows Forms(做网络应用程序)的经验,但我按照MSDN上的说明进行操作并且非常明确。有什么建议?其他人可以让这个工作吗?
答案 0 :(得分:3)
好吧我明白了。我必须手动在表单的构造函数中添加事件处理程序:
public UserInputForm()
{
InitializeComponent();
button1.Click += button1_Click;
}
为什么这不在MSDN上的文档中,令人难以置信。
答案 1 :(得分:0)
如果您使用WinForms设计器模式从工具箱中拖动按钮,然后在设计器视图中双击该按钮,它将添加事件处理程序并为您指定Click方法。仅供参考。