一:.间接调用vb中的Inputbox功能
1。在项目中添加对Microsoft.VisualBasic引用
2。在项目中添加命名空间Using Microsoft.VisualBasic
3。以后就可以直接使用VB中的好多类库
例如:textBox1.Text=Microsoft.VisualBasic.Interaction.InputBox(“提示性文字”, “对话框标慧橡题”, “默认值”, X坐标, Y坐标)
上面的 X坐标, Y坐标 可以取值为 –1 和 -1,表示屏幕中间位置肆搭显示。
资料引用:http://www.knowsky.com/539591.html
WebForm:卖念汪protected void Button1_Click(object sender, EventArgs e)
{
//这个比如就高吵是你的按钮事件
if(TextBox1.Text.Trim().Length==0)
{
Response.Write("<Script>alert('请输入值'中仔)</Script>")
}
}
WinForm:(桌面应用程序)
private void button1_Click(object sender, EventArgs e)
{
if(textBox1.Text.Trim().Length == 0)
{
MessageBox.Show("请输入值")
}
}
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)