123456789101112131415161718192021222324252627282930313233 |
- 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 WinForms
- {
- public partial class Default : Form
- {
- public Default()
- {
- InitializeComponent();
- }
- private void toolStripButton2_Click(object sender, EventArgs e)
- {
- Configure configureForm = new Configure();
- configureForm.TopLevel = false;
- configureForm.Show();
- }
- private void button10_Click(object sender, EventArgs e)
- {
- SelectWork selectWork = new SelectWork();
- selectWork.ShowDialog();
- }
- }
- }
|