AboutDialog.cs
资源名称:hannuota.rar [点击查看]
上传用户:zj8894
上传日期:2009-03-03
资源大小:28k
文件大小:0k
源码类别:
C#编程
开发平台:
C#
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Text;
- using System.Windows.Forms;
- namespace Hanoi
- {
- public partial class AboutDialog : Form
- {
- public AboutDialog()
- {
- InitializeComponent();
- }
- private void autoPlayButton_Click(object sender, EventArgs e)
- {
- this.Close();
- }
- }
- }