using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; namespace Stone.WinModule.BasicData { public partial class frmTTZ_Rule : Stone.WinModule.BasicData.frmBaseMain { public frmTTZ_Rule() { InitializeComponent(); this.tlbInput.Visible = false; this.tlbInput.Enabled = false; } private void frmTTZ_Rule_Load(object sender, EventArgs e) { } public override void Search(string code) { base.Search(code); strWhere += $" or [cartype] like '%{code}%'"; } } }