BaseDialogForm.Designer.cs 2.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. namespace FastReport.Forms
  2. {
  3. partial class BaseDialogForm
  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.btnOk = new System.Windows.Forms.Button();
  29. this.btnCancel = new System.Windows.Forms.Button();
  30. this.SuspendLayout();
  31. //
  32. // btnOk
  33. //
  34. this.btnOk.DialogResult = System.Windows.Forms.DialogResult.OK;
  35. this.btnOk.Location = new System.Drawing.Point(124, 232);
  36. this.btnOk.Name = "btnOk";
  37. this.btnOk.Size = new System.Drawing.Size(75, 23);
  38. this.btnOk.TabIndex = 0;
  39. this.btnOk.Text = "OK";
  40. this.btnOk.UseVisualStyleBackColor = true;
  41. //
  42. // btnCancel
  43. //
  44. this.btnCancel.DialogResult = System.Windows.Forms.DialogResult.Cancel;
  45. this.btnCancel.Location = new System.Drawing.Point(204, 232);
  46. this.btnCancel.Name = "btnCancel";
  47. this.btnCancel.Size = new System.Drawing.Size(75, 23);
  48. this.btnCancel.TabIndex = 0;
  49. this.btnCancel.Text = "Cancel";
  50. this.btnCancel.UseVisualStyleBackColor = true;
  51. //
  52. // BaseDialogForm
  53. //
  54. this.AcceptButton = this.btnOk;
  55. this.CancelButton = this.btnCancel;
  56. this.Controls.Add(this.btnCancel);
  57. this.Controls.Add(this.btnOk);
  58. this.Name = "BaseDialogForm";
  59. this.ResumeLayout(false);
  60. }
  61. #endregion
  62. /// <summary>
  63. /// The OK button.
  64. /// </summary>
  65. public System.Windows.Forms.Button btnOk;
  66. /// <summary>
  67. /// The Cancel button.
  68. /// </summary>
  69. public System.Windows.Forms.Button btnCancel;
  70. }
  71. }