123456789101112131415161718192021222324252627282930313233343536373839404142434445 |
- using System;
- using System.Collections.Generic;
- using System.ComponentModel;
- using System.Data;
- using System.Drawing;
- using System.Linq;
- using System.Runtime.CompilerServices;
- using System.Text;
- using System.Threading.Tasks;
- using System.Windows.Forms;
- namespace KotenkovStudents
- {
- public partial class Form1 : Form
- {
- public Form1()
- {
- InitializeComponent();
- }
- private void SpecBt_Click(object sender, EventArgs e)
- {
- Specialties f2 = new Specialties();
- f2.Show();
- }
- private void PredmetBt_Click(object sender, EventArgs e)
- {
- Subjects f3 = new Subjects();
- f3.Show();
- }
- private void StudentsBt_Click(object sender, EventArgs e)
- {
- Students f4 = new Students();
- f4.Show();
- }
- private void GradeBt_Click(object sender, EventArgs e)
- {
- Grades f5 = new Grades();
- f5.Show();
- }
- }
- }
|