PageToolBar.Designer.cs 11 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228
  1. namespace Azylee.WinformSkin.UserWidgets.PageWidgets
  2. {
  3. partial class PageToolBar
  4. {
  5. /// <summary>
  6. /// 必需的设计器变量。
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 清理所有正在使用的资源。
  11. /// </summary>
  12. /// <param name="disposing">如果应释放托管资源,为 true;否则为 false。</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region 组件设计器生成的代码
  22. /// <summary>
  23. /// 设计器支持所需的方法 - 不要修改
  24. /// 使用代码编辑器修改此方法的内容。
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.PNMain = new System.Windows.Forms.Panel();
  29. this.PNNumber = new System.Windows.Forms.Panel();
  30. this.LBPageDesc = new System.Windows.Forms.Label();
  31. this.PNPageUp = new System.Windows.Forms.Panel();
  32. this.PNPageUpOne = new System.Windows.Forms.Panel();
  33. this.BTPageUpOne = new System.Windows.Forms.Button();
  34. this.PNPageUpFirst = new System.Windows.Forms.Panel();
  35. this.BTPageUpFirst = new System.Windows.Forms.Button();
  36. this.PNPageDown = new System.Windows.Forms.Panel();
  37. this.PNPageDownOne = new System.Windows.Forms.Panel();
  38. this.BTPageDownOne = new System.Windows.Forms.Button();
  39. this.PNPageDownLast = new System.Windows.Forms.Panel();
  40. this.BTPageDownLast = new System.Windows.Forms.Button();
  41. this.PNMain.SuspendLayout();
  42. this.PNNumber.SuspendLayout();
  43. this.PNPageUp.SuspendLayout();
  44. this.PNPageUpOne.SuspendLayout();
  45. this.PNPageUpFirst.SuspendLayout();
  46. this.PNPageDown.SuspendLayout();
  47. this.PNPageDownOne.SuspendLayout();
  48. this.PNPageDownLast.SuspendLayout();
  49. this.SuspendLayout();
  50. //
  51. // PNMain
  52. //
  53. this.PNMain.Controls.Add(this.PNNumber);
  54. this.PNMain.Controls.Add(this.PNPageUp);
  55. this.PNMain.Controls.Add(this.PNPageDown);
  56. this.PNMain.Dock = System.Windows.Forms.DockStyle.Fill;
  57. this.PNMain.Location = new System.Drawing.Point(0, 0);
  58. this.PNMain.Name = "PNMain";
  59. this.PNMain.Size = new System.Drawing.Size(294, 20);
  60. this.PNMain.TabIndex = 0;
  61. //
  62. // PNNumber
  63. //
  64. this.PNNumber.Controls.Add(this.LBPageDesc);
  65. this.PNNumber.Dock = System.Windows.Forms.DockStyle.Fill;
  66. this.PNNumber.Location = new System.Drawing.Point(56, 0);
  67. this.PNNumber.Name = "PNNumber";
  68. this.PNNumber.Size = new System.Drawing.Size(182, 20);
  69. this.PNNumber.TabIndex = 3;
  70. //
  71. // LBPageDesc
  72. //
  73. this.LBPageDesc.Dock = System.Windows.Forms.DockStyle.Fill;
  74. this.LBPageDesc.Location = new System.Drawing.Point(0, 0);
  75. this.LBPageDesc.Name = "LBPageDesc";
  76. this.LBPageDesc.Size = new System.Drawing.Size(182, 20);
  77. this.LBPageDesc.TabIndex = 0;
  78. this.LBPageDesc.Text = "第 1 页,共 1 页";
  79. this.LBPageDesc.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  80. //
  81. // PNPageUp
  82. //
  83. this.PNPageUp.Controls.Add(this.PNPageUpOne);
  84. this.PNPageUp.Controls.Add(this.PNPageUpFirst);
  85. this.PNPageUp.Dock = System.Windows.Forms.DockStyle.Left;
  86. this.PNPageUp.Location = new System.Drawing.Point(0, 0);
  87. this.PNPageUp.Name = "PNPageUp";
  88. this.PNPageUp.Size = new System.Drawing.Size(56, 20);
  89. this.PNPageUp.TabIndex = 2;
  90. //
  91. // PNPageUpOne
  92. //
  93. this.PNPageUpOne.Controls.Add(this.BTPageUpOne);
  94. this.PNPageUpOne.Dock = System.Windows.Forms.DockStyle.Fill;
  95. this.PNPageUpOne.Location = new System.Drawing.Point(28, 0);
  96. this.PNPageUpOne.Name = "PNPageUpOne";
  97. this.PNPageUpOne.Size = new System.Drawing.Size(28, 20);
  98. this.PNPageUpOne.TabIndex = 6;
  99. //
  100. // BTPageUpOne
  101. //
  102. this.BTPageUpOne.Dock = System.Windows.Forms.DockStyle.Fill;
  103. this.BTPageUpOne.FlatAppearance.BorderSize = 0;
  104. this.BTPageUpOne.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  105. this.BTPageUpOne.Location = new System.Drawing.Point(0, 0);
  106. this.BTPageUpOne.Name = "BTPageUpOne";
  107. this.BTPageUpOne.Size = new System.Drawing.Size(28, 20);
  108. this.BTPageUpOne.TabIndex = 2;
  109. this.BTPageUpOne.Text = "<";
  110. this.BTPageUpOne.UseVisualStyleBackColor = true;
  111. this.BTPageUpOne.Click += new System.EventHandler(this.BTPageUpOne_Click);
  112. //
  113. // PNPageUpFirst
  114. //
  115. this.PNPageUpFirst.Controls.Add(this.BTPageUpFirst);
  116. this.PNPageUpFirst.Dock = System.Windows.Forms.DockStyle.Left;
  117. this.PNPageUpFirst.Location = new System.Drawing.Point(0, 0);
  118. this.PNPageUpFirst.Name = "PNPageUpFirst";
  119. this.PNPageUpFirst.Size = new System.Drawing.Size(28, 20);
  120. this.PNPageUpFirst.TabIndex = 4;
  121. //
  122. // BTPageUpFirst
  123. //
  124. this.BTPageUpFirst.Dock = System.Windows.Forms.DockStyle.Fill;
  125. this.BTPageUpFirst.FlatAppearance.BorderSize = 0;
  126. this.BTPageUpFirst.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  127. this.BTPageUpFirst.Location = new System.Drawing.Point(0, 0);
  128. this.BTPageUpFirst.Name = "BTPageUpFirst";
  129. this.BTPageUpFirst.Size = new System.Drawing.Size(28, 20);
  130. this.BTPageUpFirst.TabIndex = 1;
  131. this.BTPageUpFirst.Text = "<<";
  132. this.BTPageUpFirst.UseVisualStyleBackColor = true;
  133. this.BTPageUpFirst.Click += new System.EventHandler(this.BTPageUpFirst_Click);
  134. //
  135. // PNPageDown
  136. //
  137. this.PNPageDown.Controls.Add(this.PNPageDownOne);
  138. this.PNPageDown.Controls.Add(this.PNPageDownLast);
  139. this.PNPageDown.Dock = System.Windows.Forms.DockStyle.Right;
  140. this.PNPageDown.Location = new System.Drawing.Point(238, 0);
  141. this.PNPageDown.Name = "PNPageDown";
  142. this.PNPageDown.Size = new System.Drawing.Size(56, 20);
  143. this.PNPageDown.TabIndex = 3;
  144. //
  145. // PNPageDownOne
  146. //
  147. this.PNPageDownOne.Controls.Add(this.BTPageDownOne);
  148. this.PNPageDownOne.Dock = System.Windows.Forms.DockStyle.Fill;
  149. this.PNPageDownOne.Location = new System.Drawing.Point(0, 0);
  150. this.PNPageDownOne.Name = "PNPageDownOne";
  151. this.PNPageDownOne.Size = new System.Drawing.Size(28, 20);
  152. this.PNPageDownOne.TabIndex = 6;
  153. //
  154. // BTPageDownOne
  155. //
  156. this.BTPageDownOne.Dock = System.Windows.Forms.DockStyle.Fill;
  157. this.BTPageDownOne.FlatAppearance.BorderSize = 0;
  158. this.BTPageDownOne.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  159. this.BTPageDownOne.Location = new System.Drawing.Point(0, 0);
  160. this.BTPageDownOne.Name = "BTPageDownOne";
  161. this.BTPageDownOne.Size = new System.Drawing.Size(28, 20);
  162. this.BTPageDownOne.TabIndex = 3;
  163. this.BTPageDownOne.Text = ">";
  164. this.BTPageDownOne.UseVisualStyleBackColor = true;
  165. this.BTPageDownOne.Click += new System.EventHandler(this.BTPageDownOne_Click);
  166. //
  167. // PNPageDownLast
  168. //
  169. this.PNPageDownLast.Controls.Add(this.BTPageDownLast);
  170. this.PNPageDownLast.Dock = System.Windows.Forms.DockStyle.Right;
  171. this.PNPageDownLast.Location = new System.Drawing.Point(28, 0);
  172. this.PNPageDownLast.Name = "PNPageDownLast";
  173. this.PNPageDownLast.Size = new System.Drawing.Size(28, 20);
  174. this.PNPageDownLast.TabIndex = 7;
  175. //
  176. // BTPageDownLast
  177. //
  178. this.BTPageDownLast.Dock = System.Windows.Forms.DockStyle.Fill;
  179. this.BTPageDownLast.FlatAppearance.BorderSize = 0;
  180. this.BTPageDownLast.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  181. this.BTPageDownLast.Location = new System.Drawing.Point(0, 0);
  182. this.BTPageDownLast.Name = "BTPageDownLast";
  183. this.BTPageDownLast.Size = new System.Drawing.Size(28, 20);
  184. this.BTPageDownLast.TabIndex = 4;
  185. this.BTPageDownLast.Text = ">>";
  186. this.BTPageDownLast.UseVisualStyleBackColor = true;
  187. this.BTPageDownLast.Click += new System.EventHandler(this.BTPageDownLast_Click);
  188. //
  189. // PageToolBar
  190. //
  191. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 12F);
  192. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  193. this.Controls.Add(this.PNMain);
  194. this.Name = "PageToolBar";
  195. this.Size = new System.Drawing.Size(294, 20);
  196. this.Load += new System.EventHandler(this.PageToolBar_Load);
  197. this.PNMain.ResumeLayout(false);
  198. this.PNNumber.ResumeLayout(false);
  199. this.PNPageUp.ResumeLayout(false);
  200. this.PNPageUpOne.ResumeLayout(false);
  201. this.PNPageUpFirst.ResumeLayout(false);
  202. this.PNPageDown.ResumeLayout(false);
  203. this.PNPageDownOne.ResumeLayout(false);
  204. this.PNPageDownLast.ResumeLayout(false);
  205. this.ResumeLayout(false);
  206. }
  207. #endregion
  208. private System.Windows.Forms.Panel PNMain;
  209. private System.Windows.Forms.Panel PNNumber;
  210. private System.Windows.Forms.Panel PNPageUp;
  211. private System.Windows.Forms.Panel PNPageUpOne;
  212. private System.Windows.Forms.Button BTPageUpOne;
  213. private System.Windows.Forms.Panel PNPageUpFirst;
  214. private System.Windows.Forms.Button BTPageUpFirst;
  215. private System.Windows.Forms.Panel PNPageDown;
  216. private System.Windows.Forms.Panel PNPageDownOne;
  217. private System.Windows.Forms.Button BTPageDownOne;
  218. private System.Windows.Forms.Panel PNPageDownLast;
  219. private System.Windows.Forms.Button BTPageDownLast;
  220. private System.Windows.Forms.Label LBPageDesc;
  221. }
  222. }