/// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     this.webBrowser = new ExtendedBrowserControl();
     this.SuspendLayout();
     //
     // webBrowser
     //
     this.webBrowser.Dock        = System.Windows.Forms.DockStyle.Fill;
     this.webBrowser.Location    = new System.Drawing.Point(0, 0);
     this.webBrowser.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowser.Name        = "webBrowser";
     this.webBrowser.Size        = new System.Drawing.Size(752, 430);
     this.webBrowser.TabIndex    = 0;
     //
     // UserContactInfo
     //
     this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
     this.ClientSize        = new System.Drawing.Size(752, 430);
     this.Controls.Add(this.webBrowser);
     this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
     this.Name            = "UserContactInfo";
     this.ShowInTaskbar   = false;
     this.StartPosition   = System.Windows.Forms.FormStartPosition.Manual;
     this.Load           += new System.EventHandler(this.UserContactInfo_Load);
     this.ResumeLayout(false);
 }
示例#2
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UserDialog));
     this.browserPanel = new System.Windows.Forms.Panel();
     this.browser      = new ExtendedBrowserControl();
     this.browserPanel.SuspendLayout();
     this.SuspendLayout();
     //
     // browserPanel
     //
     resources.ApplyResources(this.browserPanel, "browserPanel");
     this.browserPanel.Controls.Add(this.browser);
     this.browserPanel.Name = "browserPanel";
     //
     // browser
     //
     resources.ApplyResources(this.browser, "browser");
     this.browser.MinimumSize = new System.Drawing.Size(20, 20);
     this.browser.Name        = "browser";
     //
     // UserDialog
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.browserPanel);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name        = "UserDialog";
     this.Load       += new System.EventHandler(this.UserDialog_Load);
     this.browserPanel.ResumeLayout(false);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(UrlBrowseDialog));
     this.webBrowser = new ExtendedBrowserControl();
     this.SuspendLayout();
     //
     // webBrowser
     //
     resources.ApplyResources(this.webBrowser, "webBrowser");
     this.webBrowser.MinimumSize = new System.Drawing.Size(20, 20);
     this.webBrowser.Name        = "webBrowser";
     //
     // UrlBrowseDialog
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.webBrowser);
     this.Name  = "UrlBrowseDialog";
     this.Load += new System.EventHandler(this.UrlBrowseDialog_Load);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ContactDialog));
     this.webBrowser = new ExtendedBrowserControl();
     this.SuspendLayout();
     //
     // webBrowser
     //
     resources.ApplyResources(this.webBrowser, "webBrowser");
     this.webBrowser.MinimumSize     = new System.Drawing.Size(20, 20);
     this.webBrowser.Name            = "webBrowser";
     this.webBrowser.SelfNavigate    = false;
     this.webBrowser.WBWantsToClose += new System.EventHandler(this.webBrowser_HandleDestroyed);
     //
     // ContactDialog
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.webBrowser);
     this.Name       = "ContactDialog";
     this.Activated += new System.EventHandler(this.CreateContactDialog_Activated);
     this.ResumeLayout(false);
 }
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(DocsLinksCreateDialog));
     this.browser = new ExtendedBrowserControl();
     this.SuspendLayout();
     //
     // browser
     //
     resources.ApplyResources(this.browser, "browser");
     this.browser.EnableInternalReloader = false;
     this.browser.Name         = "browser";
     this.browser.SelfNavigate = false;
     //
     // DocsLinksCreateDialog
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.browser);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name        = "DocsLinksCreateDialog";
     this.Load       += new System.EventHandler(this.DocsLinksCreate_Load);
     this.ResumeLayout(false);
 }
示例#6
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
     System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(PersonDialog));
     this.browser = new ExtendedBrowserControl();
     this.SuspendLayout();
     //
     // browser
     //
     resources.ApplyResources(this.browser, "browser");
     this.browser.MinimumSize        = new System.Drawing.Size(20, 20);
     this.browser.Name               = "browser";
     this.browser.WBWantsToClose    += new EventHandler(BrowserClose);
     this.browser.DocumentCompleted += new System.Windows.Forms.WebBrowserDocumentCompletedEventHandler(this.browser_DocumentCompleted);
     //
     // PersonDialog
     //
     resources.ApplyResources(this, "$this");
     this.Controls.Add(this.browser);
     this.MaximizeBox = false;
     this.MinimizeBox = false;
     this.Name        = "PersonDialog";
     this.Activated  += new System.EventHandler(this.PersonDialog_Activated);
     this.ResumeLayout(false);
 }