narsil/Tanshu.Accounts.PointOfSale/Logging/LogViewerForm.Designer.cs

232 lines
12 KiB
C#
Raw Normal View History

2010-03-02 17:56:21 +00:00
namespace Tanshu.Accounts.PointOfSale
{
partial class LogViewerForm
{
/// <summary>
/// Required designer variable.
/// </summary>
private System.ComponentModel.IContainer components = null;
/// <summary>
/// Clean up any resources being used.
/// </summary>
/// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
protected override void Dispose(bool disposing)
{
if (disposing && (components != null))
{
components.Dispose();
}
base.Dispose(disposing);
}
#region Windows Form Designer generated code
/// <summary>
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
/// </summary>
private void InitializeComponent()
{
this.components = new System.ComponentModel.Container();
this.Label6 = new System.Windows.Forms.Label();
this.Label2 = new System.Windows.Forms.Label();
this.Label1 = new System.Windows.Forms.Label();
this.cmbType = new System.Windows.Forms.ComboBox();
this.dtpTo = new System.Windows.Forms.DateTimePicker();
this.dtpFrom = new System.Windows.Forms.DateTimePicker();
this.dgvPayments = new System.Windows.Forms.DataGridView();
this.bindingSource = new System.Windows.Forms.BindingSource(this.components);
this.idDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.dateDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.messageDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.levelDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.loggerDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.exceptionDataGridViewTextBoxColumn = new System.Windows.Forms.DataGridViewTextBoxColumn();
((System.ComponentModel.ISupportInitialize)(this.dgvPayments)).BeginInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource)).BeginInit();
this.SuspendLayout();
//
// Label6
//
this.Label6.AutoSize = true;
this.Label6.Location = new System.Drawing.Point(12, 41);
this.Label6.Name = "Label6";
this.Label6.Size = new System.Drawing.Size(33, 13);
this.Label6.TabIndex = 104;
this.Label6.Text = "Level";
//
// Label2
//
this.Label2.AutoSize = true;
this.Label2.Location = new System.Drawing.Point(219, 16);
this.Label2.Name = "Label2";
this.Label2.Size = new System.Drawing.Size(20, 13);
this.Label2.TabIndex = 97;
this.Label2.Text = "To";
//
// Label1
//
this.Label1.AutoSize = true;
this.Label1.Location = new System.Drawing.Point(12, 16);
this.Label1.Name = "Label1";
this.Label1.Size = new System.Drawing.Size(30, 13);
this.Label1.TabIndex = 95;
this.Label1.Text = "From";
//
// cmbType
//
this.cmbType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cmbType.Items.AddRange(new object[] {
"Opening",
"Receipt",
"Payment",
"Additional Void",
"Retained at Night"});
this.cmbType.Location = new System.Drawing.Point(68, 38);
this.cmbType.Name = "cmbType";
this.cmbType.Size = new System.Drawing.Size(322, 21);
this.cmbType.TabIndex = 105;
//
// dtpTo
//
this.dtpTo.CustomFormat = "dd-MMM-yyyy";
this.dtpTo.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtpTo.Location = new System.Drawing.Point(245, 12);
this.dtpTo.Name = "dtpTo";
this.dtpTo.Size = new System.Drawing.Size(145, 20);
this.dtpTo.TabIndex = 98;
this.dtpTo.ValueChanged += new System.EventHandler(this.dtpTo_ValueChanged);
//
// dtpFrom
//
this.dtpFrom.CustomFormat = "dd-MMM-yyyy";
this.dtpFrom.Format = System.Windows.Forms.DateTimePickerFormat.Custom;
this.dtpFrom.Location = new System.Drawing.Point(68, 12);
this.dtpFrom.Name = "dtpFrom";
this.dtpFrom.Size = new System.Drawing.Size(132, 20);
this.dtpFrom.TabIndex = 96;
this.dtpFrom.ValueChanged += new System.EventHandler(this.dtpFrom_ValueChanged);
//
// dgvPayments
//
this.dgvPayments.AllowUserToAddRows = false;
this.dgvPayments.AllowUserToDeleteRows = false;
this.dgvPayments.AllowUserToResizeRows = false;
this.dgvPayments.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.dgvPayments.AutoGenerateColumns = false;
this.dgvPayments.AutoSizeColumnsMode = System.Windows.Forms.DataGridViewAutoSizeColumnsMode.DisplayedCells;
this.dgvPayments.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvPayments.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.idDataGridViewTextBoxColumn,
this.dateDataGridViewTextBoxColumn,
this.messageDataGridViewTextBoxColumn,
this.levelDataGridViewTextBoxColumn,
this.loggerDataGridViewTextBoxColumn,
this.exceptionDataGridViewTextBoxColumn});
this.dgvPayments.DataSource = this.bindingSource;
this.dgvPayments.EditMode = System.Windows.Forms.DataGridViewEditMode.EditProgrammatically;
this.dgvPayments.Location = new System.Drawing.Point(12, 65);
this.dgvPayments.Name = "dgvPayments";
this.dgvPayments.ReadOnly = true;
this.dgvPayments.RowHeadersVisible = false;
this.dgvPayments.SelectionMode = System.Windows.Forms.DataGridViewSelectionMode.FullRowSelect;
this.dgvPayments.Size = new System.Drawing.Size(378, 459);
this.dgvPayments.TabIndex = 110;
//
// bindingSource
//
this.bindingSource.DataSource = typeof(Tanshu.Logging.SqlLog);
//
// idDataGridViewTextBoxColumn
//
this.idDataGridViewTextBoxColumn.DataPropertyName = "Id";
this.idDataGridViewTextBoxColumn.HeaderText = "Id";
this.idDataGridViewTextBoxColumn.Name = "idDataGridViewTextBoxColumn";
this.idDataGridViewTextBoxColumn.ReadOnly = true;
this.idDataGridViewTextBoxColumn.Width = 41;
//
// dateDataGridViewTextBoxColumn
//
this.dateDataGridViewTextBoxColumn.DataPropertyName = "Date";
this.dateDataGridViewTextBoxColumn.HeaderText = "Date";
this.dateDataGridViewTextBoxColumn.Name = "dateDataGridViewTextBoxColumn";
this.dateDataGridViewTextBoxColumn.ReadOnly = true;
this.dateDataGridViewTextBoxColumn.Width = 55;
//
// messageDataGridViewTextBoxColumn
//
this.messageDataGridViewTextBoxColumn.DataPropertyName = "Message";
this.messageDataGridViewTextBoxColumn.HeaderText = "Message";
this.messageDataGridViewTextBoxColumn.Name = "messageDataGridViewTextBoxColumn";
this.messageDataGridViewTextBoxColumn.ReadOnly = true;
this.messageDataGridViewTextBoxColumn.Width = 75;
//
// levelDataGridViewTextBoxColumn
//
this.levelDataGridViewTextBoxColumn.DataPropertyName = "Level";
this.levelDataGridViewTextBoxColumn.HeaderText = "Level";
this.levelDataGridViewTextBoxColumn.Name = "levelDataGridViewTextBoxColumn";
this.levelDataGridViewTextBoxColumn.ReadOnly = true;
this.levelDataGridViewTextBoxColumn.Width = 58;
//
// loggerDataGridViewTextBoxColumn
//
this.loggerDataGridViewTextBoxColumn.DataPropertyName = "Logger";
this.loggerDataGridViewTextBoxColumn.HeaderText = "Logger";
this.loggerDataGridViewTextBoxColumn.Name = "loggerDataGridViewTextBoxColumn";
this.loggerDataGridViewTextBoxColumn.ReadOnly = true;
this.loggerDataGridViewTextBoxColumn.Width = 65;
//
// exceptionDataGridViewTextBoxColumn
//
this.exceptionDataGridViewTextBoxColumn.DataPropertyName = "Exception";
this.exceptionDataGridViewTextBoxColumn.HeaderText = "Exception";
this.exceptionDataGridViewTextBoxColumn.Name = "exceptionDataGridViewTextBoxColumn";
this.exceptionDataGridViewTextBoxColumn.ReadOnly = true;
this.exceptionDataGridViewTextBoxColumn.Width = 79;
//
// LogViewerForm
//
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(402, 536);
this.Controls.Add(this.dgvPayments);
this.Controls.Add(this.Label6);
this.Controls.Add(this.Label2);
this.Controls.Add(this.Label1);
this.Controls.Add(this.cmbType);
this.Controls.Add(this.dtpTo);
this.Controls.Add(this.dtpFrom);
this.MaximizeBox = false;
this.Name = "LogViewerForm";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
this.Text = "Payments";
this.Load += new System.EventHandler(this.PaymentForm_Load);
((System.ComponentModel.ISupportInitialize)(this.dgvPayments)).EndInit();
((System.ComponentModel.ISupportInitialize)(this.bindingSource)).EndInit();
this.ResumeLayout(false);
this.PerformLayout();
}
#endregion
internal System.Windows.Forms.Label Label6;
internal System.Windows.Forms.Label Label2;
internal System.Windows.Forms.Label Label1;
internal System.Windows.Forms.ComboBox cmbType;
internal System.Windows.Forms.DateTimePicker dtpTo;
internal System.Windows.Forms.DateTimePicker dtpFrom;
private System.Windows.Forms.DataGridView dgvPayments;
private System.Windows.Forms.BindingSource bindingSource;
private System.Windows.Forms.DataGridViewTextBoxColumn idDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn dateDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn messageDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn levelDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn loggerDataGridViewTextBoxColumn;
private System.Windows.Forms.DataGridViewTextBoxColumn exceptionDataGridViewTextBoxColumn;
}
}