| 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 优软MES
- {
- public partial class Test1 : Form
- {
- public Test1()
- {
- InitializeComponent();
- }
- private void pagination1_Load(object sender, EventArgs e)
- {
- string[] field = { "*" };
- pagination1.BindDataToNavigator(dataGridView1,"bom",field);
- }
-
- private void dataGridView1_KeyDown(object sender, KeyEventArgs e)
- {
- if ((int)Control.ModifierKeys == (int)Keys.Control + (int)Keys.Alt && e.KeyCode==Keys.S) {
-
- }
- }
- }
- }
|