教程集 www.jiaochengji.com
教程集 >  操作系统  >  windows  >  正文 做一个Windows窗体版的DOS分析器

做一个Windows窗体版的DOS分析器

发布时间:2019-12-16   编辑:jiaochengji.com
教程集为您提供做一个Windows窗体版的DOS分析器等资源,欢迎您收藏本站,我们将为您提供最新的做一个Windows窗体版的DOS分析器资源
////////////////////////////////////////////////////////////////////////////////
//Author: stardicky //
//E-mail: stardicky@hotmail.com //
//QQNumber: 9531511 //
//CompanyName: Ezone International //
//Class: HBS-0308 //
//title: 做一个Windows窗体版的DOS分析器 //
////////////////////////////////////////////////////////////////////////////////
using System;
using System.Drawing;
using System.Collections;
using System.ComponentModel;
using System.Windows.Forms;
using System.Data;
using System.Diagnostics;
namespace EzoneDOSApp
{
/// <summary>
/// Form1 的摘要说明。
/// </summary>
public class Form1 : System.Windows.Forms.Form
{
private System.Windows.Forms.TextBox txtCmd;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.RichTextBox rtbResult;
/// <summary>
/// 必需的设计器变量。
/// </summary>
private System.ComponentModel.Container components = null;
private Process ProcessCmdObject;
public Form1()
{
//
// Windows 窗体设计器支持所必需的
//
InitializeComponent();
//
// TODO: 在 InitializeComponent 调用后添加任何构造函数代码

您可能感兴趣的文章:
做一个Windows窗体版的DOS分析器
学习邮件服务器之动态域名、子域名、二级域名
bios能识别硬盘但系统识别不了解决方法
html5中audio(音频)的分析
html5中video(视频)元素的分析
php服务器配置过程解析
用于结束进程的二个Dos命令(ntsd、taskkill)
regedit编辑注册表详解
Edge浏览器播放爱奇艺网站上的视频有时出现无声或暂停的问题
Python基础学习之Python初体验

[关闭]
~ ~