mirror of
https://github.com/mirror/processhacker
synced 2026-06-08 16:03:24 +00:00
624bc13ab8
git-svn-id: svn://svn.code.sf.net/p/processhacker/code@1802 21ef857c-d57f-4fe0-8362-d861dc6d29cd
89 lines
3.9 KiB
C#
89 lines
3.9 KiB
C#
namespace ProcessHacker
|
|
{
|
|
partial class IPInfoWindow
|
|
{
|
|
/// <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(IPInfoWindow));
|
|
this.textInfo = new System.Windows.Forms.TextBox();
|
|
this.buttonClose = new System.Windows.Forms.Button();
|
|
this.SuspendLayout();
|
|
//
|
|
// textInfo
|
|
//
|
|
this.textInfo.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.textInfo.BackColor = System.Drawing.Color.White;
|
|
this.textInfo.Cursor = System.Windows.Forms.Cursors.Arrow;
|
|
this.textInfo.Location = new System.Drawing.Point(12, 12);
|
|
this.textInfo.Multiline = true;
|
|
this.textInfo.Name = "textInfo";
|
|
this.textInfo.ReadOnly = true;
|
|
this.textInfo.ScrollBars = System.Windows.Forms.ScrollBars.Both;
|
|
this.textInfo.Size = new System.Drawing.Size(415, 314);
|
|
this.textInfo.TabIndex = 0;
|
|
//
|
|
// buttonClose
|
|
//
|
|
this.buttonClose.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.buttonClose.FlatStyle = System.Windows.Forms.FlatStyle.System;
|
|
this.buttonClose.Location = new System.Drawing.Point(352, 332);
|
|
this.buttonClose.Name = "buttonClose";
|
|
this.buttonClose.Size = new System.Drawing.Size(75, 23);
|
|
this.buttonClose.TabIndex = 1;
|
|
this.buttonClose.Text = "Close";
|
|
this.buttonClose.UseVisualStyleBackColor = true;
|
|
this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
|
|
//
|
|
// IPInfoWindow
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(439, 364);
|
|
this.Controls.Add(this.buttonClose);
|
|
this.Controls.Add(this.textInfo);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
|
|
this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
|
|
this.MaximizeBox = false;
|
|
this.MinimizeBox = false;
|
|
this.Name = "IPInfoWindow";
|
|
this.ShowIcon = false;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "IP information";
|
|
this.Load += new System.EventHandler(this.IPInfoWindow_Load);
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.TextBox textInfo;
|
|
private System.Windows.Forms.Button buttonClose;
|
|
}
|
|
} |