namespace DW5S.App.UserControl
{
partial class CtrlPage
{
///
/// 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 Component Designer generated code
///
/// Required method for Designer support - do not modify
/// the contents of this method with the code editor.
///
private void InitializeComponent()
{
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(CtrlPage));
btnLast = new DevExpress.XtraEditors.SimpleButton();
btnNext = new DevExpress.XtraEditors.SimpleButton();
btnPrev = new DevExpress.XtraEditors.SimpleButton();
btnFirst = new DevExpress.XtraEditors.SimpleButton();
btnGo = new DevExpress.XtraEditors.SimpleButton();
txtGoPage = new DevExpress.XtraEditors.TextEdit();
txtCountPerPage = new DevExpress.XtraEditors.ComboBoxEdit();
stackPanel1 = new DevExpress.Utils.Layout.StackPanel();
labelControl1 = new DevExpress.XtraEditors.LabelControl();
labelControl2 = new DevExpress.XtraEditors.LabelControl();
txtPageInfo = new DevExpress.XtraEditors.LabelControl();
((System.ComponentModel.ISupportInitialize)txtGoPage.Properties).BeginInit();
((System.ComponentModel.ISupportInitialize)txtCountPerPage.Properties).BeginInit();
((System.ComponentModel.ISupportInitialize)stackPanel1).BeginInit();
stackPanel1.SuspendLayout();
SuspendLayout();
//
// btnLast
//
btnLast.ImageOptions.SvgImage = (DevExpress.Utils.Svg.SvgImage)resources.GetObject("btnLast.ImageOptions.SvgImage");
btnLast.ImageOptions.SvgImageSize = new System.Drawing.Size(12, 12);
btnLast.Location = new System.Drawing.Point(311, 10);
btnLast.Name = "btnLast";
btnLast.PaintStyle = DevExpress.XtraEditors.Controls.PaintStyles.Light;
btnLast.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
btnLast.Size = new System.Drawing.Size(20, 20);
btnLast.TabIndex = 4;
btnLast.ToolTip = "尾页";
btnLast.Click += btn_Click;
//
// btnNext
//
btnNext.ImageOptions.SvgImage = (DevExpress.Utils.Svg.SvgImage)resources.GetObject("btnNext.ImageOptions.SvgImage");
btnNext.ImageOptions.SvgImageSize = new System.Drawing.Size(12, 12);
btnNext.Location = new System.Drawing.Point(287, 10);
btnNext.Name = "btnNext";
btnNext.PaintStyle = DevExpress.XtraEditors.Controls.PaintStyles.Light;
btnNext.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
btnNext.Size = new System.Drawing.Size(20, 20);
btnNext.TabIndex = 3;
btnNext.ToolTip = "下一页";
btnNext.Click += btn_Click;
//
// btnPrev
//
btnPrev.ImageOptions.SvgImage = (DevExpress.Utils.Svg.SvgImage)resources.GetObject("btnPrev.ImageOptions.SvgImage");
btnPrev.ImageOptions.SvgImageSize = new System.Drawing.Size(12, 12);
btnPrev.Location = new System.Drawing.Point(176, 10);
btnPrev.Name = "btnPrev";
btnPrev.PaintStyle = DevExpress.XtraEditors.Controls.PaintStyles.Light;
btnPrev.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
btnPrev.Size = new System.Drawing.Size(20, 20);
btnPrev.TabIndex = 2;
btnPrev.ToolTip = "上一页";
btnPrev.Click += btn_Click;
//
// btnFirst
//
btnFirst.ImageOptions.SvgImage = (DevExpress.Utils.Svg.SvgImage)resources.GetObject("btnFirst.ImageOptions.SvgImage");
btnFirst.ImageOptions.SvgImageSize = new System.Drawing.Size(12, 12);
btnFirst.Location = new System.Drawing.Point(151, 10);
btnFirst.Margin = new System.Windows.Forms.Padding(20, 3, 3, 3);
btnFirst.Name = "btnFirst";
btnFirst.PaintStyle = DevExpress.XtraEditors.Controls.PaintStyles.Light;
btnFirst.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
btnFirst.Size = new System.Drawing.Size(20, 20);
btnFirst.TabIndex = 0;
btnFirst.ToolTip = "首页";
btnFirst.Click += btn_Click;
//
// btnGo
//
btnGo.ImageOptions.SvgImage = (DevExpress.Utils.Svg.SvgImage)resources.GetObject("btnGo.ImageOptions.SvgImage");
btnGo.ImageOptions.SvgImageSize = new System.Drawing.Size(12, 12);
btnGo.Location = new System.Drawing.Point(434, 10);
btnGo.Name = "btnGo";
btnGo.PaintStyle = DevExpress.XtraEditors.Controls.PaintStyles.Light;
btnGo.ShowFocusRectangle = DevExpress.Utils.DefaultBoolean.False;
btnGo.Size = new System.Drawing.Size(20, 20);
btnGo.TabIndex = 6;
btnGo.ToolTip = "跳转";
btnGo.Click += btn_Click;
//
// txtGoPage
//
txtGoPage.Location = new System.Drawing.Point(353, 10);
txtGoPage.Margin = new System.Windows.Forms.Padding(20, 3, 3, 3);
txtGoPage.Name = "txtGoPage";
txtGoPage.Properties.AutoHeight = false;
txtGoPage.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
txtGoPage.Size = new System.Drawing.Size(76, 20);
txtGoPage.TabIndex = 5;
//
// txtCountPerPage
//
txtCountPerPage.EditValue = "100";
txtCountPerPage.Location = new System.Drawing.Point(37, 10);
txtCountPerPage.Name = "txtCountPerPage";
txtCountPerPage.Properties.AutoHeight = false;
txtCountPerPage.Properties.BorderStyle = DevExpress.XtraEditors.Controls.BorderStyles.NoBorder;
txtCountPerPage.Properties.Buttons.AddRange(new DevExpress.XtraEditors.Controls.EditorButton[] { new DevExpress.XtraEditors.Controls.EditorButton(DevExpress.XtraEditors.Controls.ButtonPredefines.Combo) });
txtCountPerPage.Properties.Items.AddRange(new object[] { "100", "500", "1000", "2000", "5000" });
txtCountPerPage.Size = new System.Drawing.Size(76, 20);
txtCountPerPage.TabIndex = 0;
txtCountPerPage.EditValueChanged += txtCountPerPage_EditValueChanged;
//
// stackPanel1
//
stackPanel1.Controls.Add(labelControl1);
stackPanel1.Controls.Add(txtCountPerPage);
stackPanel1.Controls.Add(labelControl2);
stackPanel1.Controls.Add(btnFirst);
stackPanel1.Controls.Add(btnPrev);
stackPanel1.Controls.Add(txtPageInfo);
stackPanel1.Controls.Add(btnNext);
stackPanel1.Controls.Add(btnLast);
stackPanel1.Controls.Add(txtGoPage);
stackPanel1.Controls.Add(btnGo);
stackPanel1.Dock = System.Windows.Forms.DockStyle.Fill;
stackPanel1.Location = new System.Drawing.Point(0, 0);
stackPanel1.Name = "stackPanel1";
stackPanel1.Size = new System.Drawing.Size(796, 42);
stackPanel1.TabIndex = 2;
stackPanel1.UseSkinIndents = true;
//
// labelControl1
//
labelControl1.Location = new System.Drawing.Point(11, 13);
labelControl1.Margin = new System.Windows.Forms.Padding(0);
labelControl1.Name = "labelControl1";
labelControl1.Size = new System.Drawing.Size(24, 14);
labelControl1.TabIndex = 0;
labelControl1.Text = "每页";
//
// labelControl2
//
labelControl2.Location = new System.Drawing.Point(117, 13);
labelControl2.Name = "labelControl2";
labelControl2.Size = new System.Drawing.Size(12, 14);
labelControl2.TabIndex = 0;
labelControl2.Text = "条";
//
// txtPageInfo
//
txtPageInfo.Location = new System.Drawing.Point(208, 13);
txtPageInfo.Margin = new System.Windows.Forms.Padding(10, 3, 10, 3);
txtPageInfo.Name = "txtPageInfo";
txtPageInfo.Size = new System.Drawing.Size(67, 14);
txtPageInfo.TabIndex = 0;
txtPageInfo.Text = "第0页/共0页";
//
// CtrlPage
//
AutoScaleDimensions = new System.Drawing.SizeF(7F, 14F);
AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
Controls.Add(stackPanel1);
Margin = new System.Windows.Forms.Padding(0);
Name = "CtrlPage";
Size = new System.Drawing.Size(796, 42);
((System.ComponentModel.ISupportInitialize)txtGoPage.Properties).EndInit();
((System.ComponentModel.ISupportInitialize)txtCountPerPage.Properties).EndInit();
((System.ComponentModel.ISupportInitialize)stackPanel1).EndInit();
stackPanel1.ResumeLayout(false);
stackPanel1.PerformLayout();
ResumeLayout(false);
}
#endregion
private DevExpress.XtraEditors.SimpleButton btnLast;
private DevExpress.XtraEditors.SimpleButton btnNext;
private DevExpress.XtraEditors.SimpleButton btnPrev;
private DevExpress.XtraEditors.SimpleButton btnFirst;
private DevExpress.XtraEditors.SimpleButton btnGo;
private DevExpress.XtraEditors.TextEdit txtGoPage;
private DevExpress.XtraEditors.ComboBoxEdit txtCountPerPage;
private DevExpress.Utils.Layout.StackPanel stackPanel1;
private DevExpress.XtraEditors.LabelControl labelControl1;
private DevExpress.XtraEditors.LabelControl labelControl2;
private DevExpress.XtraEditors.LabelControl txtPageInfo;
}
}