C#中如何将文本框中的数值传送给button按钮!求解!
我想在文本框中输入cmd.exe按Button按钮执行!!如何实现这种功能!文本框的代码该怎么写!!Button下的代码又该怎么写?????求解要能行的!!!!...
我想 在文本框中 输入 cmd.exe 按Button 按钮执行!!如何实现这种功能!文本框的代码该怎么写!!Button下的代码又该怎么写?????
求解 要能行的!!!! 展开
求解 要能行的!!!! 展开
3个回答
展开全部
直接复制拿去用,自己添加1个按钮
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string Run = "";
Run = textBox1.Text;
Process.Start(Run);
}
}
}
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Text;
using System.Windows.Forms;
using System.Diagnostics;
namespace WindowsApplication1
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void button1_Click(object sender, EventArgs e)
{
string Run = "";
Run = textBox1.Text;
Process.Start(Run);
}
}
}
展开全部
System.Diagnostics.Process.Start("程序名,也就是你文本框的文字");
或
System.Diagnostics.Process.Start("程序名,也就是你文本框的文字", "程序参数");
或
System.Diagnostics.Process.Start("程序名,也就是你文本框的文字", "程序参数");
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
不知道你是不是想调用 System 中的 cmd.exe命令
cmd.exe 是 C:\windows\system32\ 下面的一个程序。
button 按钮中的事件:(// 要添加 using System.Diagnostics 引用;)
if (this.textBox1.Text.Length > 0)
{
Process process = new Process();
process.StartInfo.FileName = @"c:\windows\system32\"+this.textBox1.Text+".exe";
process.Start();
}
cmd.exe 是 C:\windows\system32\ 下面的一个程序。
button 按钮中的事件:(// 要添加 using System.Diagnostics 引用;)
if (this.textBox1.Text.Length > 0)
{
Process process = new Process();
process.StartInfo.FileName = @"c:\windows\system32\"+this.textBox1.Text+".exe";
process.Start();
}
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询