~jamesbrashko/+junk/POGSdevel

« back to all changes in this revision

Viewing changes to POGS-Windows-UI/EnterPassword.cs

  • Committer: Brashko
  • Date: 2008-04-28 09:53:43 UTC
  • Revision ID: james.brashko4ever@hotmail.com-20080428095343-kd3ytfust11coxls
upload windows UI

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
using System;
 
2
using System.Collections.Generic;
 
3
using System.ComponentModel;
 
4
using System.Data;
 
5
using System.Drawing;
 
6
using System.Text;
 
7
using System.Windows.Forms;
 
8
 
 
9
namespace POGS_Windows_UI
 
10
{
 
11
    public partial class EnterPassword : Form
 
12
    {
 
13
        public EnterPassword()
 
14
        {
 
15
            InitializeComponent();
 
16
        }
 
17
        public static string password;
 
18
        private void OK_Click(object sender, EventArgs e)
 
19
        {
 
20
            EnterPassword.password = Passwordbox.Text;
 
21
            this.Hide();
 
22
        }
 
23
    }
 
24
}