WebBrowserFormBase.Designer.cs 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980
  1. namespace FastReport.Cloud.StorageClient
  2. {
  3. partial class WebBrowserFormBase
  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.wbBrowser = new System.Windows.Forms.WebBrowser();
  29. this.SuspendLayout();
  30. //
  31. // btnOk
  32. //
  33. this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  34. this.btnOk.Location = new System.Drawing.Point(296, 247);
  35. //
  36. // btnCancel
  37. //
  38. this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
  39. this.btnCancel.Location = new System.Drawing.Point(377, 247);
  40. //
  41. // wbBrowser
  42. //
  43. this.wbBrowser.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  44. | System.Windows.Forms.AnchorStyles.Left)
  45. | System.Windows.Forms.AnchorStyles.Right)));
  46. this.wbBrowser.Location = new System.Drawing.Point(0, 0);
  47. this.wbBrowser.MinimumSize = new System.Drawing.Size(20, 20);
  48. this.wbBrowser.Name = "wbBrowser";
  49. this.wbBrowser.ScriptErrorsSuppressed = true;
  50. this.wbBrowser.Size = new System.Drawing.Size(464, 241);
  51. this.wbBrowser.TabIndex = 0;
  52. //
  53. // WebBrowserFormBase
  54. //
  55. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  56. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  57. this.ClientSize = new System.Drawing.Size(464, 282);
  58. this.Controls.Add(this.wbBrowser);
  59. this.Name = "WebBrowserFormBase";
  60. this.Text = "Web Browser";
  61. this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
  62. this.Shown += new System.EventHandler(this.WebBrowserFormBase_Shown);
  63. this.Controls.SetChildIndex(this.btnCancel, 0);
  64. this.Controls.SetChildIndex(this.btnOk, 0);
  65. this.Controls.SetChildIndex(this.wbBrowser, 0);
  66. this.ResumeLayout(false);
  67. }
  68. #endregion
  69. /// <summary>
  70. /// The web browser component.
  71. /// </summary>
  72. public System.Windows.Forms.WebBrowser wbBrowser;
  73. }
  74. }