57 lines
2.1 KiB
C#
57 lines
2.1 KiB
C#
namespace GenesisCordonelInterface.UI.Debug
|
|
{
|
|
partial class MeterBatchConfigPanel
|
|
{
|
|
private System.ComponentModel.IContainer components = null;
|
|
private System.Windows.Forms.DataGridView grid;
|
|
|
|
protected override void Dispose(bool disposing)
|
|
{
|
|
if (disposing)
|
|
{
|
|
if (components != null)
|
|
components.Dispose();
|
|
|
|
if (api != null)
|
|
api.MeterBatchStatusChanged -= Api_MeterBatchStatusChanged;
|
|
}
|
|
|
|
base.Dispose(disposing);
|
|
}
|
|
|
|
#region Component Designer generated code
|
|
|
|
private void InitializeComponent()
|
|
{
|
|
this.grid = new System.Windows.Forms.DataGridView();
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.grid)).BeginInit();
|
|
this.SuspendLayout();
|
|
|
|
// grid
|
|
this.grid.AllowUserToAddRows = false;
|
|
this.grid.AllowUserToDeleteRows = false;
|
|
this.grid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.Fill;
|
|
this.grid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.grid.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.grid.Name = "grid";
|
|
this.grid.RowHeadersWidth = 30;
|
|
this.grid.TabIndex = 0;
|
|
|
|
// events
|
|
this.grid.CellValueChanged += new System.Windows.Forms.DataGridViewCellEventHandler(this.grid_CellValueChanged);
|
|
this.grid.CurrentCellDirtyStateChanged += new System.EventHandler(this.grid_CurrentCellDirtyStateChanged);
|
|
this.grid.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.grid_DataError);
|
|
|
|
// MeterBatchConfigPanel
|
|
this.Controls.Add(this.grid);
|
|
this.Name = "MeterBatchConfigPanel";
|
|
this.Size = new System.Drawing.Size(600, 200);
|
|
|
|
((System.ComponentModel.ISupportInitialize)(this.grid)).EndInit();
|
|
this.ResumeLayout(false);
|
|
}
|
|
|
|
#endregion
|
|
}
|
|
} |