123456789101112131415161718192021222324252627282930313233343536373839404142 |
- 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 Rp41Murashkin
- {
- public partial class Services : Form
- {
- public Services()
- {
- InitializeComponent();
- this.Text = "Услуги";
- }
- private void servicesBindingNavigatorSaveItem_Click(object sender, EventArgs e)
- {
- this.Validate();
- this.servicesBindingSource.EndEdit();
- this.tableAdapterManager.UpdateAll(this.rp41MursahkinDataSet);
- }
- private void Services_Load(object sender, EventArgs e)
- {
- // TODO: данная строка кода позволяет загрузить данные в таблицу "rp41MursahkinDataSet.services". При необходимости она может быть перемещена или удалена.
- this.servicesTableAdapter.Fill(this.rp41MursahkinDataSet.services);
- }
- private void button1_Click(object sender, EventArgs e)
- {
- var serviceClients = new ServiceClients();
- serviceClients.Show();
- }
- }
- }
|