WebBrowserForm.Designer.cs 3.2 KB

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