posts - 77, comments - 54, trackbacks - 0, articles - 0
  IT博客 :: 首页 :: 新随笔 :: 联系 :: 聚合  :: 管理

简单记事本程序!

Posted on 2006-08-19 07:33 东人EP 阅读(599) 评论(0)  编辑 收藏 引用 所属分类: .NET
  1 using  System;
  2 using  System.IO;
  3 using  System.Drawing;
  4 using  System.Collections;
  5 using  System.ComponentModel;
  6 using  System.Windows.Forms;
  7 using  System.Data;
  8
  9 namespace  HelloGUI
 10 {
 11      ///   <summary>
 12      ///  Form1 的摘要说明。
 13      ///   </summary>

 14      public   class  FormMain : System.Windows.Forms.Form
 15      {
 16          变量声明
 63          private  IContainer components;
 64
 65          public  FormMain()
 66          {
 67              //
 68              //  Windows 窗体设计器支持所必需的
 69              //
 70             InitializeComponent();
 71
 72              //
 73              //  TODO: 在 InitializeComponent 调用后添加任何构造函数代码
 74              //
 75         }

 76
 77          ///   <summary>
 78          ///  清理所有正在使用的资源。
 79          ///   </summary>
 80          ///  

 81          private   void  InitalizeComponent()
 82          {
 83         }

 84          protected   override   void  Dispose(  bool  disposing )
 85          {
 86              if ( disposing )
 87              {
 88                  if  (components  !=   null
 89                  {
 90                     components.Dispose();
 91                 }

 92             }

 93              base .Dispose( disposing );
 94         }

 95
 96          Windows 窗体设计器生成的代码
356
357          ///   <summary>
358          ///  应用程序的主入口点。
359          ///   </summary>

360         [STAThread]
361          static   void  Main() 
362          {
363             Application.Run( new  FormMain());
364         }

365
366          主窗体代码
411
412          编辑菜单
516
517          文件菜单
777
778          格式菜单
810
811          //  关于
812          private   void  menuItemAbout_Click( object  sender, System.EventArgs e)
813          {
814             AboutForm aboutForm  =   new  AboutForm();
815             aboutForm.ShowDialog();
816         }

817
818          private   void  menuItemWordWrap_Click( object  sender, EventArgs e)
819          {
820
821         }

822
823     }

824 }

825
只有注册用户登录后才能发表评论。