| 1234567891011121314151617181920212223242526272829303132333435363738 |
- using System;
- using System.Data;
- using DevExpress.XtraEditors;
- using UAS_DeviceMonitor.Entity;
- namespace UAS_DeviceMonitor.CustomerControl.Button
- {
- public partial class ButtonSaveGrid : SimpleButton
- {
- private AutoDataGridControl.AutoDataGridControl grid;
- public AutoDataGridControl.AutoDataGridControl Grid
- {
- get
- {
- return grid;
- }
- set
- {
- grid = value;
- }
- }
- public ButtonSaveGrid()
- {
- InitializeComponent();
- }
- private void ButtonSaveGrid_Click(object sender, EventArgs e)
- {
- DataTable dt = (DataTable)grid.DataSource;
- if (dt != null)
- SystemInf.dh.SaveDataTable(dt, grid.TableName, grid.ID, grid.InsertSQL);
- }
- }
- }
|