我正在尝试开发一个自定义输入对话框。在其构造函数中,我想采用如下参数-
PromptType.Question
PromptType.Information
PromptType.Feedback
//etc....
private void buttonTest_Click(object sender, System.EventArgs e)
{
InputBoxResult result = InputBox.Show("Some title",PromptType.Question);
}
我该怎么做??