DataViewForm.Designer.cs 6.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  1. namespace FastReport.Forms
  2. {
  3. partial class DataViewForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Windows Form Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.stStatus = new System.Windows.Forms.StatusStrip();
  29. this.lblRows = new System.Windows.Forms.Label();
  30. this.btnPrior = new System.Windows.Forms.Button();
  31. this.btnNext = new System.Windows.Forms.Button();
  32. this.btnLast = new System.Windows.Forms.Button();
  33. this.btnFirst = new System.Windows.Forms.Button();
  34. this.SuspendLayout();
  35. //
  36. // stStatus
  37. //
  38. this.stStatus.AutoSize = false;
  39. this.stStatus.Location = new System.Drawing.Point(0, 336);
  40. this.stStatus.Name = "stStatus";
  41. this.stStatus.Size = new System.Drawing.Size(584, 25);
  42. this.stStatus.TabIndex = 0;
  43. //
  44. // lblRows
  45. //
  46. this.lblRows.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
  47. this.lblRows.AutoSize = false;
  48. this.lblRows.Location = new System.Drawing.Point(12, 343);
  49. this.lblRows.Name = "lblRows";
  50. this.lblRows.Size = new System.Drawing.Size(120, 13);
  51. this.lblRows.TabIndex = 1;
  52. this.lblRows.Text = "0 row(s)";
  53. //
  54. // btnPrior
  55. //
  56. this.btnPrior.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  57. this.btnPrior.Location = new System.Drawing.Point(431, 338);
  58. this.btnPrior.Name = "btnPrior";
  59. this.btnPrior.Size = new System.Drawing.Size(40, 23);
  60. this.btnPrior.TabIndex = 2;
  61. this.btnPrior.TabStop = false;
  62. this.btnPrior.Text = "Prior";
  63. this.btnPrior.UseVisualStyleBackColor = true;
  64. this.btnPrior.Click += new System.EventHandler(this.btnPrior_Click);
  65. //
  66. // btnNext
  67. //
  68. this.btnNext.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  69. this.btnNext.Location = new System.Drawing.Point(477, 338);
  70. this.btnNext.Name = "btnNext";
  71. this.btnNext.Size = new System.Drawing.Size(40, 23);
  72. this.btnNext.TabIndex = 3;
  73. this.btnNext.TabStop = false;
  74. this.btnNext.Text = "Next";
  75. this.btnNext.UseVisualStyleBackColor = true;
  76. this.btnNext.Click += new System.EventHandler(this.btnNext_Click);
  77. //
  78. // btnLast
  79. //
  80. this.btnLast.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  81. this.btnLast.Location = new System.Drawing.Point(523, 338);
  82. this.btnLast.Name = "btnLast";
  83. this.btnLast.Size = new System.Drawing.Size(40, 23);
  84. this.btnLast.TabIndex = 4;
  85. this.btnLast.TabStop = false;
  86. this.btnLast.Text = "Last";
  87. this.btnLast.UseVisualStyleBackColor = true;
  88. this.btnLast.Click += new System.EventHandler(this.btnLast_Click);
  89. //
  90. // btnFirst
  91. //
  92. this.btnFirst.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  93. this.btnFirst.Location = new System.Drawing.Point(385, 338);
  94. this.btnFirst.Name = "btnFirst";
  95. this.btnFirst.Size = new System.Drawing.Size(40, 23);
  96. this.btnFirst.TabIndex = 5;
  97. this.btnFirst.TabStop = false;
  98. this.btnFirst.Text = "First";
  99. this.btnFirst.UseVisualStyleBackColor = true;
  100. this.btnFirst.Click += new System.EventHandler(this.btnFirst_Click);
  101. //
  102. // DataViewForm
  103. //
  104. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  105. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  106. this.AutoValidate = System.Windows.Forms.AutoValidate.Disable;
  107. this.ClientSize = new System.Drawing.Size(584, 361);
  108. this.Controls.Add(this.btnFirst);
  109. this.Controls.Add(this.btnLast);
  110. this.Controls.Add(this.btnNext);
  111. this.Controls.Add(this.btnPrior);
  112. this.Controls.Add(this.lblRows);
  113. this.Controls.Add(this.stStatus);
  114. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
  115. this.Name = "DataViewForm";
  116. this.Text = "View Data";
  117. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.DataViewForm_FormClosed);
  118. this.Shown += new System.EventHandler(this.DataViewForm_Shown);
  119. this.ResumeLayout(false);
  120. this.PerformLayout();
  121. }
  122. #endregion
  123. private System.Windows.Forms.StatusStrip stStatus;
  124. private System.Windows.Forms.Label lblRows;
  125. private System.Windows.Forms.Button btnPrior;
  126. private System.Windows.Forms.Button btnNext;
  127. private System.Windows.Forms.Button btnLast;
  128. private System.Windows.Forms.Button btnFirst;
  129. }
  130. }