mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
7bd28e4357
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@2304 21ef857c-d57f-4fe0-8362-d861dc6d29cd
84 lines
3.9 KiB
C#
84 lines
3.9 KiB
C#
namespace ProcessHacker
|
|
{
|
|
partial class HelpWindow
|
|
{
|
|
/// <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()
|
|
{
|
|
System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(HelpWindow));
|
|
this.webBrowser = new System.Windows.Forms.WebBrowser();
|
|
this.listBoxContents = new System.Windows.Forms.ListBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// webBrowser
|
|
//
|
|
this.webBrowser.AllowNavigation = false;
|
|
this.webBrowser.AllowWebBrowserDrop = false;
|
|
this.webBrowser.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.webBrowser.IsWebBrowserContextMenuEnabled = false;
|
|
this.webBrowser.Location = new System.Drawing.Point(201, 12);
|
|
this.webBrowser.MinimumSize = new System.Drawing.Size(20, 20);
|
|
this.webBrowser.Name = "webBrowser";
|
|
this.webBrowser.Size = new System.Drawing.Size(535, 490);
|
|
this.webBrowser.TabIndex = 0;
|
|
this.webBrowser.PreviewKeyDown += new System.Windows.Forms.PreviewKeyDownEventHandler(this.webBrowser_PreviewKeyDown);
|
|
//
|
|
// listBoxContents
|
|
//
|
|
this.listBoxContents.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
|
| System.Windows.Forms.AnchorStyles.Left)));
|
|
this.listBoxContents.FormattingEnabled = true;
|
|
this.listBoxContents.IntegralHeight = false;
|
|
this.listBoxContents.Location = new System.Drawing.Point(12, 12);
|
|
this.listBoxContents.Name = "listBoxContents";
|
|
this.listBoxContents.Size = new System.Drawing.Size(183, 490);
|
|
this.listBoxContents.TabIndex = 1;
|
|
this.listBoxContents.SelectedIndexChanged += new System.EventHandler(this.listBoxContents_SelectedIndexChanged);
|
|
//
|
|
// HelpWindow
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(748, 514);
|
|
this.Controls.Add(this.listBoxContents);
|
|
this.Controls.Add(this.webBrowser);
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.Name = "HelpWindow";
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Help";
|
|
this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.HelpWindow_FormClosing);
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.WebBrowser webBrowser;
|
|
private System.Windows.Forms.ListBox listBoxContents;
|
|
}
|
|
} |