namespace CNAS_DBSync
{
partial class frmSourceFilter
{
///
/// 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();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle2 = new System.Windows.Forms.DataGridViewCellStyle();
System.Windows.Forms.DataGridViewCellStyle dataGridViewCellStyle3 = new System.Windows.Forms.DataGridViewCellStyle();
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmSourceFilter));
this.groupBox1 = new System.Windows.Forms.GroupBox();
this.txtCurrentTableName = new System.Windows.Forms.TextBox();
this.label2 = new System.Windows.Forms.Label();
this.cbxConditionLink = new System.Windows.Forms.ComboBox();
this.btnDelete = new System.Windows.Forms.Button();
this.dgvConditions = new System.Windows.Forms.DataGridView();
this.btnAdd = new System.Windows.Forms.Button();
this.label1 = new System.Windows.Forms.Label();
this.btnOK = new System.Windows.Forms.Button();
this.ColumnName = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.Algorithm = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ConditionValue = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.ColumnDataType = new System.Windows.Forms.DataGridViewTextBoxColumn();
this.groupBox1.SuspendLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvConditions)).BeginInit();
this.SuspendLayout();
//
// groupBox1
//
this.groupBox1.Controls.Add(this.txtCurrentTableName);
this.groupBox1.Controls.Add(this.label2);
this.groupBox1.Controls.Add(this.cbxConditionLink);
this.groupBox1.Controls.Add(this.btnDelete);
this.groupBox1.Controls.Add(this.dgvConditions);
this.groupBox1.Controls.Add(this.btnAdd);
this.groupBox1.Controls.Add(this.label1);
this.groupBox1.Location = new System.Drawing.Point(13, 13);
this.groupBox1.Name = "groupBox1";
this.groupBox1.Size = new System.Drawing.Size(923, 580);
this.groupBox1.TabIndex = 0;
this.groupBox1.TabStop = false;
this.groupBox1.Text = "来源数据过滤";
//
// txtCurrentTableName
//
this.txtCurrentTableName.Location = new System.Drawing.Point(82, 24);
this.txtCurrentTableName.Name = "txtCurrentTableName";
this.txtCurrentTableName.ReadOnly = true;
this.txtCurrentTableName.Size = new System.Drawing.Size(160, 27);
this.txtCurrentTableName.TabIndex = 16;
//
// label2
//
this.label2.AutoSize = true;
this.label2.Location = new System.Drawing.Point(281, 26);
this.label2.Name = "label2";
this.label2.Size = new System.Drawing.Size(99, 20);
this.label2.TabIndex = 15;
this.label2.Text = "条件间关系:";
//
// cbxConditionLink
//
this.cbxConditionLink.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
this.cbxConditionLink.FormattingEnabled = true;
this.cbxConditionLink.Items.AddRange(new object[] {
"与",
"或"});
this.cbxConditionLink.Location = new System.Drawing.Point(386, 23);
this.cbxConditionLink.Name = "cbxConditionLink";
this.cbxConditionLink.Size = new System.Drawing.Size(255, 28);
this.cbxConditionLink.TabIndex = 14;
//
// btnDelete
//
this.btnDelete.Location = new System.Drawing.Point(782, 22);
this.btnDelete.Name = "btnDelete";
this.btnDelete.Size = new System.Drawing.Size(90, 30);
this.btnDelete.TabIndex = 13;
this.btnDelete.Text = "删除条件";
this.btnDelete.UseVisualStyleBackColor = true;
this.btnDelete.Click += new System.EventHandler(this.btnDelete_Click);
//
// dgvConditions
//
this.dgvConditions.AllowUserToAddRows = false;
this.dgvConditions.BackgroundColor = System.Drawing.Color.White;
dataGridViewCellStyle1.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle1.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle1.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle1.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle1.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle1.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle1.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgvConditions.ColumnHeadersDefaultCellStyle = dataGridViewCellStyle1;
this.dgvConditions.ColumnHeadersHeightSizeMode = System.Windows.Forms.DataGridViewColumnHeadersHeightSizeMode.AutoSize;
this.dgvConditions.Columns.AddRange(new System.Windows.Forms.DataGridViewColumn[] {
this.ColumnName,
this.Algorithm,
this.ConditionValue,
this.ColumnDataType});
this.dgvConditions.Location = new System.Drawing.Point(6, 55);
this.dgvConditions.MultiSelect = false;
this.dgvConditions.Name = "dgvConditions";
dataGridViewCellStyle2.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
dataGridViewCellStyle2.BackColor = System.Drawing.SystemColors.Control;
dataGridViewCellStyle2.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
dataGridViewCellStyle2.ForeColor = System.Drawing.SystemColors.WindowText;
dataGridViewCellStyle2.SelectionBackColor = System.Drawing.SystemColors.Highlight;
dataGridViewCellStyle2.SelectionForeColor = System.Drawing.SystemColors.HighlightText;
dataGridViewCellStyle2.WrapMode = System.Windows.Forms.DataGridViewTriState.True;
this.dgvConditions.RowHeadersDefaultCellStyle = dataGridViewCellStyle2;
this.dgvConditions.RowHeadersVisible = false;
dataGridViewCellStyle3.Alignment = System.Windows.Forms.DataGridViewContentAlignment.MiddleCenter;
this.dgvConditions.RowsDefaultCellStyle = dataGridViewCellStyle3;
this.dgvConditions.RowTemplate.Height = 23;
this.dgvConditions.Size = new System.Drawing.Size(917, 515);
this.dgvConditions.TabIndex = 12;
this.dgvConditions.CellClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvConditions_CellClick);
this.dgvConditions.CellDoubleClick += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvConditions_CellDoubleClick);
this.dgvConditions.CellEndEdit += new System.Windows.Forms.DataGridViewCellEventHandler(this.dgvConditions_CellEndEdit);
this.dgvConditions.CellFormatting += new System.Windows.Forms.DataGridViewCellFormattingEventHandler(this.dgvConditions_CellFormatting);
this.dgvConditions.EditingControlShowing += new System.Windows.Forms.DataGridViewEditingControlShowingEventHandler(this.dgvConditions_EditingControlShowing);
this.dgvConditions.MouseClick += new System.Windows.Forms.MouseEventHandler(this.dgvConditions_MouseClick);
//
// btnAdd
//
this.btnAdd.Location = new System.Drawing.Point(685, 22);
this.btnAdd.Name = "btnAdd";
this.btnAdd.Size = new System.Drawing.Size(91, 27);
this.btnAdd.TabIndex = 11;
this.btnAdd.Text = "新增条件";
this.btnAdd.UseVisualStyleBackColor = true;
this.btnAdd.Click += new System.EventHandler(this.btnAdd_Click);
//
// label1
//
this.label1.AutoSize = true;
this.label1.Location = new System.Drawing.Point(8, 27);
this.label1.Name = "label1";
this.label1.Size = new System.Drawing.Size(84, 20);
this.label1.TabIndex = 10;
this.label1.Text = "当前表名:";
//
// btnOK
//
this.btnOK.Location = new System.Drawing.Point(846, 599);
this.btnOK.Name = "btnOK";
this.btnOK.Size = new System.Drawing.Size(90, 30);
this.btnOK.TabIndex = 1;
this.btnOK.Text = "确认";
this.btnOK.UseVisualStyleBackColor = true;
this.btnOK.Click += new System.EventHandler(this.btnOK_Click);
//
// ColumnName
//
this.ColumnName.DataPropertyName = "ColumnName";
this.ColumnName.HeaderText = "条件列";
this.ColumnName.Name = "ColumnName";
this.ColumnName.ReadOnly = true;
this.ColumnName.Width = 250;
//
// Algorithm
//
this.Algorithm.DataPropertyName = "Algorithm";
this.Algorithm.HeaderText = "条件";
this.Algorithm.Name = "Algorithm";
this.Algorithm.ReadOnly = true;
this.Algorithm.Resizable = System.Windows.Forms.DataGridViewTriState.True;
this.Algorithm.SortMode = System.Windows.Forms.DataGridViewColumnSortMode.NotSortable;
this.Algorithm.Width = 250;
//
// ConditionValue
//
this.ConditionValue.DataPropertyName = "ConditionValue";
this.ConditionValue.HeaderText = "条件值";
this.ConditionValue.Name = "ConditionValue";
this.ConditionValue.ReadOnly = true;
this.ConditionValue.Width = 300;
//
// ColumnDataType
//
this.ColumnDataType.DataPropertyName = "ColumnDataType";
this.ColumnDataType.HeaderText = "类型";
this.ColumnDataType.Name = "ColumnDataType";
this.ColumnDataType.ReadOnly = true;
this.ColumnDataType.Visible = false;
//
// frmSourceFilter
//
this.AutoScaleDimensions = new System.Drawing.SizeF(9F, 20F);
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
this.ClientSize = new System.Drawing.Size(972, 641);
this.Controls.Add(this.btnOK);
this.Controls.Add(this.groupBox1);
this.Font = new System.Drawing.Font("微软雅黑", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(134)));
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
this.MaximizeBox = false;
this.MinimizeBox = false;
this.Name = "frmSourceFilter";
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
this.Text = "数据过滤器";
this.Load += new System.EventHandler(this.frmSourceFilter_Load);
this.groupBox1.ResumeLayout(false);
this.groupBox1.PerformLayout();
((System.ComponentModel.ISupportInitialize)(this.dgvConditions)).EndInit();
this.ResumeLayout(false);
}
#endregion
private System.Windows.Forms.GroupBox groupBox1;
private System.Windows.Forms.Button btnOK;
private System.Windows.Forms.ComboBox cbxConditionLink;
private System.Windows.Forms.Button btnDelete;
private System.Windows.Forms.DataGridView dgvConditions;
private System.Windows.Forms.Button btnAdd;
private System.Windows.Forms.Label label1;
private System.Windows.Forms.TextBox txtCurrentTableName;
private System.Windows.Forms.Label label2;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnName;
private System.Windows.Forms.DataGridViewTextBoxColumn Algorithm;
private System.Windows.Forms.DataGridViewTextBoxColumn ConditionValue;
private System.Windows.Forms.DataGridViewTextBoxColumn ColumnDataType;
}
}