1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980 |
- namespace FastReport.Cloud.StorageClient
- {
- partial class WebBrowserFormBase
- {
- /// <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();
- //
- // btnOk
- //
- this.btnOk.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnOk.Location = new System.Drawing.Point(296, 247);
- //
- // btnCancel
- //
- this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
- this.btnCancel.Location = new System.Drawing.Point(377, 247);
- //
- // 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(464, 241);
- this.wbBrowser.TabIndex = 0;
- //
- // WebBrowserFormBase
- //
- this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
- this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
- this.ClientSize = new System.Drawing.Size(464, 282);
- this.Controls.Add(this.wbBrowser);
- this.Name = "WebBrowserFormBase";
- this.Text = "Web Browser";
- this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
- this.Shown += new System.EventHandler(this.WebBrowserFormBase_Shown);
- this.Controls.SetChildIndex(this.btnCancel, 0);
- this.Controls.SetChildIndex(this.btnOk, 0);
- this.Controls.SetChildIndex(this.wbBrowser, 0);
- this.ResumeLayout(false);
- }
- #endregion
- /// <summary>
- /// The web browser component.
- /// </summary>
- public System.Windows.Forms.WebBrowser wbBrowser;
- }
- }
|