1234567891011121314151617181920212223242526272829303132 |
- 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 KadroviYshot
- {
- public partial class FormEmployees : Form
- {
- public FormEmployees()
- {
- InitializeComponent();
- StartPosition = FormStartPosition.CenterScreen;
- }
- private void выходToolStripMenuItem_Click(object sender, EventArgs e)
- {
- Environment.Exit(0);
- }
- private void btnAdd_Click(object sender, EventArgs e)
- {
- FormAddEmployees addEmployees = new FormAddEmployees();
- addEmployees.Show();
- }
- }
- }
|