1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950 |
- 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 WindowsFormsApp3
- {
- public partial class Form3 : Form
- {
- public Form3()
- {
- InitializeComponent();
- }
- private void Form3_Load(object sender, EventArgs e)
- {
-
- this.prodyktTableAdapter.Fill(this._12gkDataSet.Prodykt);
- }
- private void button1_Click(object sender, EventArgs e)
- {
- int a = dataGridView1.CurrentRow.Index;
- dataGridView1.Rows.Remove(dataGridView1.Rows[a]);
- }
- private void dataGridView1_CellContentClick(object sender, DataGridViewCellEventArgs e)
- {
- }
- private void button2_Click(object sender, EventArgs e)
- {
-
-
- }
- private void button3_Click(object sender, EventArgs e)
- {
- var Form3 = new Form1();
- Form3.Show();
- }
- }
- }
|