时间:2021-05-20
平时我们编写WinForm程序经常使用VS进行拖控件的方式,这样做虽然简单,但是无法深入了解WinForm程序的本质。其实,用记事本也可以编写出VS编写的WinForm程序。还是直接看代码吧:
1、打开记事本,写入以下代码,另存为hello.cs文件
using System;using System.Windows.Forms;namespace Hello{ public class Form1:Form { private System.Windows.Forms.Button btnClose; public Form1() { this.Text = "Form1窗体"; btnClose = new System.Windows.Forms.Button(); //将窗体挂起 this.SuspendLayout(); //设置按钮属性 this.btnClose.Location = new System.Drawing.Point(20,20); this.btnClose.Size = new System.Drawing.Size(100,25); this.btnClose.Name = "btnClose"; this.btnClose.Text = "按钮"; this.btnClose.UseVisualStyleBackColor = true; //设置按钮控件点击事件 this.btnClose.Click += new System.EventHandler(this.btnClose_Click); //将构造的控件添加到窗体Controls控件集合 this.Controls.Add(btnClose); } //按钮点击事件 private void btnClose_Click(object sender,EventArgs e) { this.Close(); } } public class Program { //程序入口 public static void Main() { Application.Run(new Form1()); } }}2、在Windows搜索框输入 cmd,打开控制台,输入以下代码切换目录
cd C:\Windows\Microsoft.NET\Framework\v4.0.303193、目录切换完毕后,输入以下代码运行
csc.exe /out:e:\hello.exe e:\hello.cs/out:e:\hello.exe用于指定可执行文件存放的目录和名称
e:\hello.cs用于指定源文件的文件路径
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
声明:本页内容来源网络,仅供用户参考;我单位不保证亦不表示资料全面及准确无误,也不保证亦不表示这些资料为最新信息,如因任何原因,本网内容或者用户因倚赖本网内容造成任何损失或损害,我单位将不会负任何法律责任。如涉及版权问题,请提交至online#300.cn邮箱联系删除。
自己编写了一个记事本程序,记事本程序使用WinForm的RichTextBox控件实现。这个程序在Windows记事本的基础上添加了改变记事本背景颜色,设置记事
在应用C#进行Winform窗体程序编写的时候,经常需要编写工具栏。下面小编给大家分享一下C#如何应用ToolSctrip控件编写工具栏。1、首先打开visua
本文实例为大家分享了使用C#写出一个简单的记事本程序,供大家参考,具体内容如下编程语言:C#编程环境:VisualStudio2013运行环境:.NETFram
本文实例讲述了C#实现将记事本中的代码编译成可执行文件的方法,运行环境为VS2012,具体方法如下:1、在记事本中编写如下代码:usingSystem;name
本文实例为大家分享了C#编写记事本的具体代码,供大家参考,具体内容如下usingSystem;usingSystem.Collections.Generic;u