namespace CSFrameworkV5.Library
|
{
|
partial class frmRowPositionAdjustor
|
{
|
/// <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();
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(frmRowPositionAdjustor));
|
this.btnFirst = new DevExpress.XtraEditors.SimpleButton();
|
this.btnLast = new DevExpress.XtraEditors.SimpleButton();
|
this.btnPrior = new DevExpress.XtraEditors.SimpleButton();
|
this.btnNext = new DevExpress.XtraEditors.SimpleButton();
|
this.btnReset = new DevExpress.XtraEditors.SimpleButton();
|
this.imageList1 = new System.Windows.Forms.ImageList(this.components);
|
this.SuspendLayout();
|
//
|
// btnFirst
|
//
|
this.btnFirst.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
|
this.btnFirst.Cursor = System.Windows.Forms.Cursors.Hand;
|
this.btnFirst.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnFirst.ImageOptions.Image")));
|
this.btnFirst.Location = new System.Drawing.Point(23, 14);
|
this.btnFirst.Name = "btnFirst";
|
this.btnFirst.Size = new System.Drawing.Size(123, 37);
|
this.btnFirst.TabIndex = 0;
|
this.btnFirst.Text = "最前面";
|
this.btnFirst.Click += new System.EventHandler(this.btnFirst_Click);
|
//
|
// btnLast
|
//
|
this.btnLast.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
|
this.btnLast.Cursor = System.Windows.Forms.Cursors.Hand;
|
this.btnLast.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnLast.ImageOptions.Image")));
|
this.btnLast.Location = new System.Drawing.Point(23, 140);
|
this.btnLast.Name = "btnLast";
|
this.btnLast.Size = new System.Drawing.Size(123, 37);
|
this.btnLast.TabIndex = 0;
|
this.btnLast.Text = "最后面";
|
this.btnLast.Click += new System.EventHandler(this.btnLast_Click);
|
//
|
// btnPrior
|
//
|
this.btnPrior.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
|
this.btnPrior.Cursor = System.Windows.Forms.Cursors.Hand;
|
this.btnPrior.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnPrior.ImageOptions.Image")));
|
this.btnPrior.Location = new System.Drawing.Point(23, 56);
|
this.btnPrior.Name = "btnPrior";
|
this.btnPrior.Size = new System.Drawing.Size(123, 37);
|
this.btnPrior.TabIndex = 0;
|
this.btnPrior.Text = "上移";
|
this.btnPrior.Click += new System.EventHandler(this.btnPrior_Click);
|
//
|
// btnNext
|
//
|
this.btnNext.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
|
this.btnNext.Cursor = System.Windows.Forms.Cursors.Hand;
|
this.btnNext.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnNext.ImageOptions.Image")));
|
this.btnNext.Location = new System.Drawing.Point(23, 98);
|
this.btnNext.Name = "btnNext";
|
this.btnNext.Size = new System.Drawing.Size(123, 37);
|
this.btnNext.TabIndex = 0;
|
this.btnNext.Text = "下移";
|
this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
|
//
|
// btnReset
|
//
|
this.btnReset.ButtonStyle = DevExpress.XtraEditors.Controls.BorderStyles.HotFlat;
|
this.btnReset.Cursor = System.Windows.Forms.Cursors.Hand;
|
this.btnReset.ImageOptions.Image = ((System.Drawing.Image)(resources.GetObject("btnReset.ImageOptions.Image")));
|
this.btnReset.Location = new System.Drawing.Point(23, 201);
|
this.btnReset.Name = "btnReset";
|
this.btnReset.Size = new System.Drawing.Size(123, 37);
|
this.btnReset.TabIndex = 0;
|
this.btnReset.Text = "重置排序";
|
this.btnReset.Click += new System.EventHandler(this.btnReset_Click);
|
//
|
// imageList1
|
//
|
this.imageList1.ImageStream = ((System.Windows.Forms.ImageListStreamer)(resources.GetObject("imageList1.ImageStream")));
|
this.imageList1.TransparentColor = System.Drawing.Color.Transparent;
|
this.imageList1.Images.SetKeyName(0, "move_sort.png");
|
this.imageList1.Images.SetKeyName(1, "move_prior.png");
|
this.imageList1.Images.SetKeyName(2, "move_next.png");
|
this.imageList1.Images.SetKeyName(3, "move_first.png");
|
this.imageList1.Images.SetKeyName(4, "move_last.png");
|
//
|
// frmRowPositionAdjustor
|
//
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
this.ClientSize = new System.Drawing.Size(172, 259);
|
this.Controls.Add(this.btnNext);
|
this.Controls.Add(this.btnPrior);
|
this.Controls.Add(this.btnReset);
|
this.Controls.Add(this.btnLast);
|
this.Controls.Add(this.btnFirst);
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedToolWindow;
|
this.Name = "frmRowPositionAdjustor";
|
this.StartPosition = System.Windows.Forms.FormStartPosition.Manual;
|
this.Text = "表格记录行位置调整器";
|
this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmRowPositionAdjustor_FormClosed);
|
this.ResumeLayout(false);
|
|
}
|
|
#endregion
|
|
private DevExpress.XtraEditors.SimpleButton btnFirst;
|
private DevExpress.XtraEditors.SimpleButton btnLast;
|
private DevExpress.XtraEditors.SimpleButton btnPrior;
|
private DevExpress.XtraEditors.SimpleButton btnNext;
|
private DevExpress.XtraEditors.SimpleButton btnReset;
|
private System.Windows.Forms.ImageList imageList1;
|
}
|
}
|