150 lines
5.8 KiB
C#
150 lines
5.8 KiB
C#
namespace Baseline
|
|
{
|
|
partial class frmSettings
|
|
{
|
|
/// <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.dgv = new System.Windows.Forms.DataGridView();
|
|
this.panel1 = new System.Windows.Forms.Panel();
|
|
this.btnOK = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.dataGridViewCheckBoxColumn1 = new System.Windows.Forms.DataGridViewCheckBoxColumn();
|
|
this.dgvcSearchType = new System.Windows.Forms.DataGridViewComboBoxColumn();
|
|
this.dataGridViewTextBoxColumn3 = new System.Windows.Forms.DataGridViewTextBoxColumn();
|
|
this.ignoreLinesBindingSource = new System.Windows.Forms.BindingSource(this.components);
|
|
((System.ComponentModel.ISupportInitialize)(this.dgv)).BeginInit();
|
|
this.panel1.SuspendLayout();
|
|
((System.ComponentModel.ISupportInitialize)(this.ignoreLinesBindingSource)).BeginInit();
|
|
this.SuspendLayout();
|
|
//
|
|
// dgv
|
|
//
|
|
this.dgv.AutoGenerateColumns = false;
|
|
this.dgv.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
|
|
this.dgv.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
|
|
this.dataGridViewCheckBoxColumn1,
|
|
this.dgvcSearchType,
|
|
this.dataGridViewTextBoxColumn3});
|
|
this.dgv.DataSource = this.ignoreLinesBindingSource;
|
|
this.dgv.Dock = System.Windows.Forms.DockStyle.Fill;
|
|
this.dgv.Location = new System.Drawing.Point(0, 0);
|
|
this.dgv.Name = "dgv";
|
|
this.dgv.Size = new System.Drawing.Size(515, 219);
|
|
this.dgv.TabIndex = 1;
|
|
this.dgv.DataError += new System.Windows.Forms.DataGridViewDataErrorEventHandler(this.dgv_DataError);
|
|
//
|
|
// panel1
|
|
//
|
|
this.panel1.Controls.Add(this.btnCancel);
|
|
this.panel1.Controls.Add(this.btnOK);
|
|
this.panel1.Dock = System.Windows.Forms.DockStyle.Bottom;
|
|
this.panel1.Location = new System.Drawing.Point(0, 219);
|
|
this.panel1.Name = "panel1";
|
|
this.panel1.Size = new System.Drawing.Size(515, 77);
|
|
this.panel1.TabIndex = 2;
|
|
//
|
|
// btnOK
|
|
//
|
|
this.btnOK.Location = new System.Drawing.Point(347, 51);
|
|
this.btnOK.Name = "btnOK";
|
|
this.btnOK.Size = new System.Drawing.Size(75, 23);
|
|
this.btnOK.TabIndex = 0;
|
|
this.btnOK.Text = "OK";
|
|
this.btnOK.UseVisualStyleBackColor = true;
|
|
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
|
|
//
|
|
// btnCancel
|
|
//
|
|
this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.btnCancel.Location = new System.Drawing.Point(428, 51);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCancel.TabIndex = 1;
|
|
this.btnCancel.Text = "Cancel";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// dataGridViewCheckBoxColumn1
|
|
//
|
|
this.dataGridViewCheckBoxColumn1.DataPropertyName = "Active";
|
|
this.dataGridViewCheckBoxColumn1.FillWeight = 50F;
|
|
this.dataGridViewCheckBoxColumn1.HeaderText = "Active";
|
|
this.dataGridViewCheckBoxColumn1.Name = "dataGridViewCheckBoxColumn1";
|
|
this.dataGridViewCheckBoxColumn1.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
//
|
|
// dgvcSearchType
|
|
//
|
|
this.dgvcSearchType.DataPropertyName = "SearchType";
|
|
this.dgvcSearchType.HeaderText = "SearchType";
|
|
this.dgvcSearchType.Name = "dgvcSearchType";
|
|
this.dgvcSearchType.Resizable = System.Windows.Forms.DataGridViewTriState.True;
|
|
this.dgvcSearchType.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.Automatic;
|
|
//
|
|
// dataGridViewTextBoxColumn3
|
|
//
|
|
this.dataGridViewTextBoxColumn3.DataPropertyName = "Text";
|
|
this.dataGridViewTextBoxColumn3.HeaderText = "Text";
|
|
this.dataGridViewTextBoxColumn3.Name = "dataGridViewTextBoxColumn3";
|
|
this.dataGridViewTextBoxColumn3.Width = 200;
|
|
//
|
|
// ignoreLinesBindingSource
|
|
//
|
|
this.ignoreLinesBindingSource.DataSource = typeof(Baseline.IgnoreLine);
|
|
//
|
|
// frmSettings
|
|
//
|
|
this.AcceptButton = this.btnOK;
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.CancelButton = this.btnCancel;
|
|
this.ClientSize = new System.Drawing.Size(515, 296);
|
|
this.Controls.Add(this.dgv);
|
|
this.Controls.Add(this.panel1);
|
|
this.Name = "frmSettings";
|
|
this.Text = "frmSettings";
|
|
this.Load += new System.EventHandler(this.frmSettings_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.dgv)).EndInit();
|
|
this.panel1.ResumeLayout(false);
|
|
((System.ComponentModel.ISupportInitialize)(this.ignoreLinesBindingSource)).EndInit();
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.BindingSource ignoreLinesBindingSource;
|
|
private System.Windows.Forms.DataGridView dgv;
|
|
private System.Windows.Forms.DataGridViewCheckBoxColumn dataGridViewCheckBoxColumn1;
|
|
private System.Windows.Forms.DataGridViewComboBoxColumn dgvcSearchType;
|
|
private System.Windows.Forms.DataGridViewTextBoxColumn dataGridViewTextBoxColumn3;
|
|
private System.Windows.Forms.Panel panel1;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.Button btnOK;
|
|
|
|
}
|
|
} |