1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace MarathonSkills2016Le
- {
- public partial class spons : Form
- {
- public spons()
- {
- InitializeComponent();
- }
- private void label15_Click(object sender, EventArgs e)
- {
- Timer timer = new Timer();
- timer.Interval = 5000;
- timer.Enabled = true;
- timer.Tick += new EventHandler(label15_Click);
- label15.Text = DateTime.Now.ToShortDateString() + ", " + DateTime.Now.ToLongTimeString();
- }
- private void button3_Click(object sender, EventArgs e)
- {
- Main sf = new Main();
- sf.Owner = this;
- sf.Show();
- this.Hide();
- }
- private void button2_Click(object sender, EventArgs e)
- {
- verifispons sf = new verifispons();
- sf.Owner = this;
- sf.Show();
- this.Hide();
- }
- private void textBox2_TextChanged(object sender, EventArgs e)
- {
-
- }
- private void textBox7_TextChanged(object sender, EventArgs e)
- {
-
- }
- }
- }
|