namespace FastReport.Forms
{
partial class DataViewForm
{
///
/// Required designer variable.
///
private System.ComponentModel.IContainer components = null;
///
/// Clean up any resources being used.
///
/// true if managed resources should be disposed; otherwise, false.
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle1 = new System.Windows.Forms.DataGridViewCellStyle();
this.stStatus = new System.Windows.Forms.StatusStrip();
this.lblRows = new System.Windows.Forms.ToolStripStatusLabel();
this.btnFirst = new System.Windows.Forms.ToolStripButton();
this.btnPrior = new System.Windows.Forms.ToolStripButton();
this.btnNext = new System.Windows.Forms.ToolStripButton();
this.btnLast = new System.Windows.Forms.ToolStripButton();
this.grid = new System.Windows.Forms.DataGridView();
this.stStatus.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.grid)).BeginInit();
this.SuspendLayout();
//
// stStatus
//
this.stStatus.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
this.lblRows,
this.btnFirst,
this.btnPrior,
this.btnNext,
this.btnLast});
this.stStatus.Location = new System.Drawing.Point(0, 339);
this.stStatus.Name = "stStatus";
this.stStatus.Size = new System.Drawing.Size(584, 22);
this.stStatus.TabIndex = 0;
//
// lblRows
//
this.lblRows.Name = "lblRows";
this.lblRows.Size = new System.Drawing.Size(477, 17);
this.lblRows.Spring = true;
this.lblRows.Text = "0 row(s)";
this.lblRows.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
//
// btnFirst
//
this.btnFirst.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.btnFirst.Name = "btnFirst";
this.btnFirst.Size = new System.Drawing.Size(26, 23);
this.btnFirst.Click += new System.EventHandler(this.btnFirst_Click);
//
// btnPrior
//
this.btnPrior.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.btnPrior.Name = "btnPrior";
this.btnPrior.Size = new System.Drawing.Size(26, 23);
this.btnPrior.Click += new System.EventHandler(this.btnPrior_Click);
//
// btnNext
//
this.btnNext.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.btnNext.Name = "btnNext";
this.btnNext.Size = new System.Drawing.Size(26, 23);
this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
//
// btnLast
//
this.btnLast.ImageScaling = System.Windows.Forms.ToolStripItemImageScaling.None;
this.btnLast.Name = "btnLast";
this.btnLast.Size = new System.Drawing.Size(26, 23);
this.btnLast.Click += new System.EventHandler(this.btnLast_Click);
//
// grid
//
this.grid.AllowUserToAddRows = false;
this.grid.AllowUserToDeleteRows = false;
dataGridViewCellStyle1.BackColor = System.Drawing.Color.WhiteSmoke;
this.grid.AlternatingRowsDefaultCellStyle = dataGridViewCellStyle1;
this.grid.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.AllCells;
this.grid.BackgroundColor = System.Drawing.SystemColors.Window;
this.grid.BorderStyle = System.Windows.Forms.BorderStyle.None;
this.grid.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.grid.Dock = System.Windows.Forms.DockStyle.Fill;
this.grid.GridColor = System.Drawing.Color.LightGray;
this.grid.Location = new System.Drawing.Point(0, 0);
this.grid.Name = "grid";
this.grid.ReadOnly = true;
this.grid.RowHeadersVisible = false;
this.grid.Size = new System.Drawing.Size(584, 339);
this.grid.TabIndex = 1;
this.grid.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.grid_DataError);
//
// DataViewForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
this.ClientSize = new System.Drawing.Size(584, 361);
this.Controls.Add(this.grid);
this.Controls.Add(this.stStatus);
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
this.Name = "DataViewForm";
this.Text = "View Data";
this.Shown += new System.EventHandler(this.DataViewForm_Shown);
this.stStatus.ResumeLayout(false);
this.stStatus.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.grid)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
private System.Windows.Forms.StatusStrip stStatus;
private System.Windows.Forms.ToolStripStatusLabel lblRows;
private System.Windows.Forms.ToolStripButton btnPrior;
private System.Windows.Forms.ToolStripButton btnNext;
private System.Windows.Forms.ToolStripButton btnLast;
private System.Windows.Forms.ToolStripButton btnFirst;
private System.Windows.Forms.DataGridView grid;
}
}