现在的位置: 首页 > 综合 > 正文

定时提醒的小工具

2012年12月08日 ⁄ 综合 ⁄ 共 6934字 ⁄ 字号 评论关闭
  1using System;
  2using System.Drawing;
  3using System.Collections;
  4using System.ComponentModel;
  5using System.Windows.Forms;
  6using System.Data;
  7
  8namespace NoticePad
  9{
 10    /// <summary>
 11    /// 定时提醒的小工具。
 12    /// </summary>

 13    public class Form1 : System.Windows.Forms.Form
 14    {
 15        private System.Windows.Forms.Label label1;
 16        private System.Windows.Forms.Label label2;
 17        private System.Windows.Forms.TextBox textBox1;
 18        private System.Windows.Forms.Timer timer1;
 19        private System.Windows.Forms.NumericUpDown ndHour;
 20        private System.Windows.Forms.NumericUpDown ndMinute;
 21        private System.Windows.Forms.Button btn_OK;
 22        private System.ComponentModel.IContainer components;
 23
 24        public Form1()
 25        {
 26            //
 27            // Windows 窗体设计器支持所必需的
 28            //
 29            InitializeComponent();
 30
 31            //
 32            // TODO: 在 InitializeComponent 调用后添加任何构造函数代码
 33            //
 34        }

 35
 36        /// <summary>
 37        /// 清理所有正在使用的资源。
 38        /// </summary>

 39        protected override void Dispose( bool disposing )
 40        {
 41            if( disposing )
 42            {
 43                if (components != null
 44                {
 45                    components.Dispose();
 46                }

 47            }

 48            base.Dispose( disposing );
 49        }

 50
 51        Windows Form Designer generated code
159
160        

抱歉!评论已关闭.