www.pudn.com > FileSecurity.rar > About.cs


using System; 
using System.Collections.Generic; 
using System.ComponentModel; 
using System.Data; 
using System.Drawing; 
using System.Text; 
using System.Windows.Forms; 
 
namespace FileSecurity 
{ 
    public partial class About : Form 
    { 
        public About() 
        { 
            InitializeComponent(); 
        } 
 
        private void btnOK_Click(object sender, EventArgs e) 
        { 
            this.Close(); 
        } 
    } 
}