testirovanie/Form1.cs

40 lines
847 B
C#
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

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 тест
{
public partial class Form1 : Form
{
public string fname, lname, group, course;
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender, EventArgs e)
{
}
private void button1_Click(object sender, EventArgs e)
{
lname = textBox1.Text;
fname = textBox2.Text;
course = textBox3.Text;
group = textBox4.Text;
testirovanie testirovanie = new testirovanie();
testirovanie.Show();
this.Hide();
}
}
}