WebBrowserForm.Designer.cs 2.6 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667
  1. namespace FastReport.Cloud.StorageClient.Box
  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. // wbBrowser
  32. //
  33. this.wbBrowser.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  34. | System.Windows.Forms.AnchorStyles.Left)
  35. | System.Windows.Forms.AnchorStyles.Right)));
  36. this.wbBrowser.Location = new System.Drawing.Point(0, 0);
  37. this.wbBrowser.MinimumSize = new System.Drawing.Size(20, 20);
  38. this.wbBrowser.Name = "wbBrowser";
  39. this.wbBrowser.ScriptErrorsSuppressed = true;
  40. this.wbBrowser.Size = new System.Drawing.Size(529, 699);
  41. this.wbBrowser.TabIndex = 0;
  42. this.wbBrowser.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.wbBrowser_Navigated);
  43. //
  44. // WebBrowserForm
  45. //
  46. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  47. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  48. this.ClientSize = new System.Drawing.Size(529, 699);
  49. this.Controls.Add(this.wbBrowser);
  50. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
  51. this.Margin = new System.Windows.Forms.Padding(48, 22, 48, 22);
  52. this.Name = "WebBrowserForm";
  53. this.ShowIcon = false;
  54. this.Text = "Web Browser";
  55. this.Shown += new System.EventHandler(this.WebBrowserForm_Shown);
  56. this.ResumeLayout(false);
  57. }
  58. #endregion
  59. private System.Windows.Forms.WebBrowser wbBrowser;
  60. }
  61. }