190 lines
9.0 KiB
C#
190 lines
9.0 KiB
C#
namespace 开发辅助工具.Tools
|
|
{
|
|
partial class FrmToolsSearch
|
|
{
|
|
/// <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.rySearch1 = new ryControls.rySearch();
|
|
this.tableModel1 = new XPTable.Models.TableModel();
|
|
this.columnModel1 = new XPTable.Models.ColumnModel();
|
|
this.ColToolName = new XPTable.Models.TextColumn();
|
|
this.ColKeys = new XPTable.Models.TextColumn();
|
|
this.ColToolDes = new XPTable.Models.TextColumn();
|
|
this.table1 = new XPTable.Models.Table();
|
|
this.contextMenuStrip1 = new System.Windows.Forms.ContextMenuStrip(this.components);
|
|
this.添加工具ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.修改工具ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.删除工具ToolStripMenuItem = new System.Windows.Forms.ToolStripMenuItem();
|
|
this.ctlMyPage1 = new MyPage.ctlMyPage();
|
|
((System.ComponentModel.ISupportInitialize)(this.table1)).BeginInit();
|
|
this.contextMenuStrip1.SuspendLayout();
|
|
this.SuspendLayout();
|
|
//
|
|
// rySearch1
|
|
//
|
|
this.rySearch1.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(236)))), ((int)(((byte)(239)))), ((int)(((byte)(244)))));
|
|
this.rySearch1.EmptyText = "请输入工具名称、名称拼音首字母、工具描述进行搜索";
|
|
this.rySearch1.ImeMode = System.Windows.Forms.ImeMode.Close;
|
|
this.rySearch1.Location = new System.Drawing.Point(12, 12);
|
|
this.rySearch1.Name = "rySearch1";
|
|
this.rySearch1.Size = new System.Drawing.Size(388, 25);
|
|
this.rySearch1.TabIndex = 1;
|
|
this.rySearch1.OnSearch += new System.EventHandler(this.RySearch1_OnSearch);
|
|
//
|
|
// tableModel1
|
|
//
|
|
this.tableModel1.RowHeight = 25;
|
|
//
|
|
// columnModel1
|
|
//
|
|
this.columnModel1.Columns.AddRange(new XPTable.Models.Column[] {
|
|
this.ColToolName,
|
|
this.ColKeys,
|
|
this.ColToolDes});
|
|
//
|
|
// ColToolName
|
|
//
|
|
this.ColToolName.Editable = false;
|
|
this.ColToolName.Tag = null;
|
|
this.ColToolName.Text = "工具名称";
|
|
this.ColToolName.Width = 180;
|
|
//
|
|
// ColKeys
|
|
//
|
|
this.ColKeys.Editable = false;
|
|
this.ColKeys.Tag = null;
|
|
this.ColKeys.Text = "关键词";
|
|
this.ColKeys.Width = 400;
|
|
//
|
|
// ColToolDes
|
|
//
|
|
this.ColToolDes.Editable = false;
|
|
this.ColToolDes.Tag = null;
|
|
this.ColToolDes.Text = "工具描述";
|
|
this.ColToolDes.Width = 400;
|
|
//
|
|
// table1
|
|
//
|
|
this.table1.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.table1.ColumnModel = this.columnModel1;
|
|
this.table1.ContextMenuStrip = this.contextMenuStrip1;
|
|
this.table1.FullRowSelect = true;
|
|
this.table1.Location = new System.Drawing.Point(12, 43);
|
|
this.table1.Name = "table1";
|
|
this.table1.NoItemsText = "当前列表没有任何项";
|
|
this.table1.Size = new System.Drawing.Size(1010, 555);
|
|
this.table1.TabIndex = 2;
|
|
this.table1.TableModel = this.tableModel1;
|
|
this.table1.Text = "table1";
|
|
//
|
|
// contextMenuStrip1
|
|
//
|
|
this.contextMenuStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
|
|
this.添加工具ToolStripMenuItem,
|
|
this.修改工具ToolStripMenuItem,
|
|
this.删除工具ToolStripMenuItem});
|
|
this.contextMenuStrip1.Name = "contextMenuStrip1";
|
|
this.contextMenuStrip1.Size = new System.Drawing.Size(125, 70);
|
|
//
|
|
// 添加工具ToolStripMenuItem
|
|
//
|
|
this.添加工具ToolStripMenuItem.Name = "添加工具ToolStripMenuItem";
|
|
this.添加工具ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.添加工具ToolStripMenuItem.Text = "添加工具";
|
|
this.添加工具ToolStripMenuItem.Click += new System.EventHandler(this.添加工具ToolStripMenuItem_Click);
|
|
//
|
|
// 修改工具ToolStripMenuItem
|
|
//
|
|
this.修改工具ToolStripMenuItem.Name = "修改工具ToolStripMenuItem";
|
|
this.修改工具ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.修改工具ToolStripMenuItem.Text = "修改工具";
|
|
this.修改工具ToolStripMenuItem.Click += new System.EventHandler(this.修改工具ToolStripMenuItem_Click);
|
|
//
|
|
// 删除工具ToolStripMenuItem
|
|
//
|
|
this.删除工具ToolStripMenuItem.Name = "删除工具ToolStripMenuItem";
|
|
this.删除工具ToolStripMenuItem.Size = new System.Drawing.Size(180, 22);
|
|
this.删除工具ToolStripMenuItem.Text = "删除工具";
|
|
this.删除工具ToolStripMenuItem.Click += new System.EventHandler(this.删除工具ToolStripMenuItem_Click);
|
|
//
|
|
// ctlMyPage1
|
|
//
|
|
this.ctlMyPage1.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
|
|
this.ctlMyPage1.Location = new System.Drawing.Point(12, 604);
|
|
this.ctlMyPage1.Name = "ctlMyPage1";
|
|
this.ctlMyPage1.PageSize = 50;
|
|
this.ctlMyPage1.RecordCount = 0;
|
|
this.ctlMyPage1.Size = new System.Drawing.Size(506, 26);
|
|
this.ctlMyPage1.SQLText = "";
|
|
this.ctlMyPage1.SQLText2 = "";
|
|
this.ctlMyPage1.T_FirstCaption = "首页";
|
|
this.ctlMyPage1.T_LastCaption = "末页";
|
|
this.ctlMyPage1.T_NextCaption = "下一页";
|
|
this.ctlMyPage1.T_Parameters = null;
|
|
this.ctlMyPage1.T_PreCaption = "上一页";
|
|
this.ctlMyPage1.T_SkipCaption = "跳到";
|
|
this.ctlMyPage1.T_TipCaption = "{pageindex}/{pagecount} 页,共 {recordcount} 条记录,每页 {pagesize} 条";
|
|
this.ctlMyPage1.TabIndex = 31;
|
|
this.ctlMyPage1.OnPageChange += new System.EventHandler(this.CtlMyPage1_OnPageChange);
|
|
//
|
|
// FrmToolsSearch
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(1034, 633);
|
|
this.Controls.Add(this.ctlMyPage1);
|
|
this.Controls.Add(this.table1);
|
|
this.Controls.Add(this.rySearch1);
|
|
this.Name = "FrmToolsSearch";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
|
|
this.Text = "工具管理";
|
|
this.Load += new System.EventHandler(this.FrmToolsSearch_Load);
|
|
((System.ComponentModel.ISupportInitialize)(this.table1)).EndInit();
|
|
this.contextMenuStrip1.ResumeLayout(false);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private ryControls.rySearch rySearch1;
|
|
private XPTable.Models.TableModel tableModel1;
|
|
private XPTable.Models.ColumnModel columnModel1;
|
|
private XPTable.Models.TextColumn ColToolName;
|
|
private XPTable.Models.TextColumn ColToolDes;
|
|
private XPTable.Models.Table table1;
|
|
private System.Windows.Forms.ContextMenuStrip contextMenuStrip1;
|
|
private System.Windows.Forms.ToolStripMenuItem 添加工具ToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem 修改工具ToolStripMenuItem;
|
|
private System.Windows.Forms.ToolStripMenuItem 删除工具ToolStripMenuItem;
|
|
private XPTable.Models.TextColumn ColKeys;
|
|
private MyPage.ctlMyPage ctlMyPage1;
|
|
}
|
|
} |