请问在C#中,有无类似于Delphi中InputBox这样可以简单输入文字的对话框? ( 积分: 10 )

  • 主题发起人 主题发起人 mycwcgr_new
  • 开始时间 开始时间
M

mycwcgr_new

Unregistered / Unconfirmed
GUEST, unregistred user!
请问在C#中,有无类似于Delphi中InputBox这样可以简单输入文字的对话框?

请问在C#中,有无类似于Delphi中InputBox这样可以简单输入文字的对话框?
 
请问在C#中,有无类似于Delphi中InputBox这样可以简单输入文字的对话框?

请问在C#中,有无类似于Delphi中InputBox这样可以简单输入文字的对话框?
 
没有自己做一个啊
其实很简单的
定义一个WINFORM窗体将它做成INPUTBOX的形状。然后写一个静态方法
public static string ShowInputBox(string Title,string keyInfo)
{
InputBox inputbox=new InputBox();//InputBox是类
inputbox.Text=Title; // inputbox.StartPosition=FormStartPosition.CenterScreen;
if(keyInfo.Trim()!=string.Empty)//keyInfo是TextBox
inputbox.lblInfo.Text=keyInfo;
inputbox.ShowDialog();
return inputbox.txtData.Text;
}
调用 string xx=InputBox.ShowInputBox("标题","文本框中预先显示的内容");就可以了
 
后退
顶部