基本代码问题

问题描述

publicclassForm1:System.Windows.Forms.Form————————System.Windows.Forms.Form是类基吗?{privateSystem.Windows.Forms.Labellabel1;---------------------------下面是声明东西的吗?System.Windows.Forms是啥???privateSystem.Windows.Forms.Labellabel2;privateSystem.Windows.Forms.Labellabel3;privateSystem.Windows.Forms.Labellabel4;privateSystem.Windows.Forms.Labellabel5;privateSystem.Windows.Forms.ListBoxlstList;privateSystem.Windows.Forms.TextBoxtxtID;privateSystem.Windows.Forms.TextBoxtxtName;privateSystem.Windows.Forms.ButtonbtnAdd;privateSystem.Windows.Forms.ButtonbtnMdi;privateSystem.Windows.Forms.ButtonbtnDel;privateSystem.Windows.Forms.ButtonbtnExit;privateSystem.Windows.Forms.CheckedListBoxClstCourse;privateSystem.Windows.Forms.ComboBoxcmbSpecialty;privateSystem.Windows.Forms.GroupBoxGB1;privateSystem.Windows.Forms.ErrorProvidererrtxtID;privateIContainercomponents;publicForm1(){////Windows窗体设计器支持所必需的//InitializeComponent();////TODO:在InitializeComponent调用后添加任何构造函数代码//}///<summary>///清理所有正在使用的资源。///</summary>protectedoverridevoidDispose(booldisposing){if(disposing){if(components!=null){components.Dispose();}}base.Dispose(disposing);}#regionWindows窗体设计器生成的代码///<summary>///设计器支持所需的方法-不要使用代码编辑器修改///此方法的内容。///</summary>privatevoidInitializeComponent(){this.components=newSystem.ComponentModel.Container();this.label1=newSystem.Windows.Forms.Label();this.GB1=newSystem.Windows.Forms.GroupBox();this.cmbSpecialty=newSystem.Windows.Forms.ComboBox();this.label5=newSystem.Windows.Forms.Label();this.label4=newSystem.Windows.Forms.Label();this.ClstCourse=newSystem.Windows.Forms.CheckedListBox();this.txtName=newSystem.Windows.Forms.TextBox();this.label3=newSystem.Windows.Forms.Label();this.txtID=newSystem.Windows.Forms.TextBox();this.label2=newSystem.Windows.Forms.Label();this.lstList=newSystem.Windows.Forms.ListBox();this.btnAdd=newSystem.Windows.Forms.Button();this.btnMdi=newSystem.Windows.Forms.Button();this.btnDel=newSystem.Windows.Forms.Button();this.btnExit=newSystem.Windows.Forms.Button();this.errtxtID=newSystem.Windows.Forms.ErrorProvider(this.components);this.GB1.SuspendLayout();((System.ComponentModel.ISupportInitialize)(this.errtxtID)).BeginInit();this.SuspendLayout();///</summary>[STAThread]staticvoidMain(){Application.Run(newForm1());}

解决方案

解决方案二:
你所建立的Form继承于System.Windows.Forms.Form那下面就是设计器根据你的设计创建的控件
解决方案三:
是基类
解决方案四:
我是菜鸟,希望你们说的通俗点。帮忙把代码分析一下它们的作用
解决方案五:
该回复于2011-11-28 09:21:33被版主删除
解决方案六:
菜鸟就不要研究系统的东东,等理解了再看好了,哈哈
解决方案七:
如果不是来解决问题聊天的可以去别的地方
解决方案八:
就是在你的窗体上初始化了一些控件

时间: 2024-10-27 08:26:31

基本代码问题的相关文章

ASP生成静态htm页面基本代码!

ASP生成静态htm页面基本代码! 以下虚线框内为mk.asp文件的具体代码: -------------------------------------------------------------------------------- <% filename="test.htm" if request("body")<>"" then set fso = Server.CreateObject("Scriptin

AS的基本代码解释

基本 Action.包括: -   Go   to 跳转到指定的帧    -   Play 播放    -   Stop 停止    -   Toggle   High   Quality 在高画质和低画质间切换    -   Stop   All   Sounds 停止所有声音的播放    -   Get   URL 跳转至某个超联结    -   FSCommand 发送FSCommand命令    -   Load   Movie 装载影片    -   Unload   Movie 卸载

MyBatis-Generator自动生成基本代码

一,MyEclipse中安装Generator           可以在MyEclipse中,选择install from site:http://mybatis.googlecode.com/svn/sub-projects/generator/trunk/eclipse/UpdateSite/                         二,生成各层类    在src目录下,添加生成的配置文件:     <?xml version="1.0" encoding=&quo

ExtJs事件机制基本代码模型和流程解析_extjs

代码实现的目的:为一个自定义的类的某个属性在使用它时候,触发某个事件. 该程序的效果:点击输入按钮,弹出一个脚本提示输入框让用户输入他的姓名,确定后,用户录入的姓名会显示在页面的姓名文本框中,并且页面标题变成和姓名一致,接着再弹出脚本提示输入框让用户输入性别,录入完毕并点击确定后,用户录入的性别将会显示在页面的性别文本框里. 复制代码 代码如下: <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" &quo

Python 3——线程相关操作基本代码

一,创建线程 ''''' 功能:输出当前时间 ''' def gettime(): localtime = time.localtime(time.time()) year = localtime[0] month = localtime[1] day = localtime[2] hour = localtime[3] minute = localtime[4] print("本地时间为:" + str(year) + '-' + str(month) + "-"

ASP生成静态htm页面基本代码_应用技巧

以下虚线框内为mk.asp文件的具体代码:--------------------------------------------------------------------------------<%filename="test.htm"if request("body")<>"" thenset fso = Server.CreateObject("Scripting.FileSystemObject"

ASP生成静态htm页面基本代码

以下虚线框内为mk.asp文件的具体代码: -------------------------------------------------------------------------------- <% filename="test.htm" if request("body")<>"" then set fso = Server.CreateObject("Scripting.FileSystemObject

JSP与XML的结合

js|xml 综述:可扩展标注语言(eXtensible Markup Language,XML)正被迅速的运用于业界,它已作为与平台.语言和协议无关的格式描述和交换数据的广泛应用标准.XML和它的辅助规范可用于描述数据的文档表现,描述XML文档类型的限制,描述XML文档和资源之间的链接,描述XML文档的自动转换和格式化. 如何开发自定义标签库? 我使用JSP和ASP编程已经有一段颇长的时间了,在两种服务器端的编程方式中,我越来越觉得JSP的功能要强大得多.不提别的,其中JSP的标签库就是我选择

图片处理的一个问题

问题描述 软件运行中出现这个问题怎么处理求解答有关调用实时(JIT)调试而不是此对话框的详细信息,请参见此消息的结尾.**************异常文本**************System.ArgumentException:参数无效.在System.Drawing.Image.get_RawFormat()在System.Drawing.Graphics.IgnoreMetafileErrors(Imageimage,Int32&errorStatus)在System.Drawing.G