12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667 |
- namespace FastReport.Cloud.StorageClient.Box
- {
- partial class WebBrowserForm
- {
- /// <summary>
- /// Required designer variable.
- /// </summary>
- private System.ComponentModel.IContainer components = null;
- /// <summary>
- /// Clean up any resources being used.
- /// </summary>
- /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
- protected override void Dispose(bool disposing)
- {
- if (disposing && (components != null))
- {
- components.Dispose();
- }
- base.Dispose(disposing);
- }
- #region Windows Form Designer generated code
- /// <summary>
- /// Required method for Designer support - do not modify
- /// the contents of this method with the code editor.
- /// </summary>
- private void InitializeComponent()
- {
- this.wbBrowser = new System.Windows.Forms.WebBrowser();
- this.SuspendLayout();
- //
- // wbBrowser
- //
- this.wbBrowser.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
- | System.Windows.Forms.AnchorStyles.Left)
- | System.Windows.Forms.AnchorStyles.Right)));
- this.wbBrowser.Location = new System.Drawing.Point(0, 0);
- this.wbBrowser.MinimumSize = new System.Drawing.Size(20, 20);
- this.wbBrowser.Name = "wbBrowser";
- this.wbBrowser.ScriptErrorsSuppressed = true;
- this.wbBrowser.Size = new System.Drawing.Size(529, 699);
- this.wbBrowser.TabIndex = 0;
- this.wbBrowser.Navigated += new System.Windows.Forms.WebBrowserNavigatedEventHandler(this.wbBrowser_Navigated);
- //
- // WebBrowserForm
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.ClientSize = new System.Drawing.Size(529, 699);
- this.Controls.Add(this.wbBrowser);
- this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.Sizable;
- this.Margin = new System.Windows.Forms.Padding(48, 22, 48, 22);
- this.Name = "WebBrowserForm";
- this.ShowIcon = false;
- this.Text = "Web Browser";
- this.Shown += new System.EventHandler(this.WebBrowserForm_Shown);
- this.ResumeLayout(false);
- }
- #endregion
- private System.Windows.Forms.WebBrowser wbBrowser;
- }
- }
|