mirror of
https://github.com/vinaypamnani/wmie2.git
synced 2025-12-06 04:12:02 +01:00
101 lines
4.4 KiB
C#
101 lines
4.4 KiB
C#
namespace WmiExplorer.Forms
|
|
{
|
|
partial class Form_DisplayText
|
|
{
|
|
/// <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.buttonOk = new System.Windows.Forms.Button();
|
|
this.richTextBox = new System.Windows.Forms.RichTextBox();
|
|
this.labelCaption = new System.Windows.Forms.Label();
|
|
this.SuspendLayout();
|
|
//
|
|
// buttonOk
|
|
//
|
|
this.buttonOk.Anchor = System.Windows.Forms.AnchorStyles.Bottom;
|
|
this.buttonOk.DialogResult = System.Windows.Forms.DialogResult.Cancel;
|
|
this.buttonOk.Location = new System.Drawing.Point(194, 249);
|
|
this.buttonOk.Name = "buttonOk";
|
|
this.buttonOk.Size = new System.Drawing.Size(100, 25);
|
|
this.buttonOk.TabIndex = 2;
|
|
this.buttonOk.Text = "OK";
|
|
this.buttonOk.UseVisualStyleBackColor = true;
|
|
this.buttonOk.Click += new System.EventHandler(this.buttonOk_Click);
|
|
//
|
|
// richTextBox
|
|
//
|
|
this.richTextBox.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.richTextBox.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.richTextBox.Location = new System.Drawing.Point(12, 49);
|
|
this.richTextBox.Name = "richTextBox";
|
|
this.richTextBox.ReadOnly = true;
|
|
this.richTextBox.Size = new System.Drawing.Size(470, 194);
|
|
this.richTextBox.TabIndex = 3;
|
|
this.richTextBox.Text = "";
|
|
this.richTextBox.WordWrap = false;
|
|
//
|
|
// labelCaption
|
|
//
|
|
this.labelCaption.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
|
|
| System.Windows.Forms.AnchorStyles.Right)));
|
|
this.labelCaption.BackColor = System.Drawing.Color.LightSteelBlue;
|
|
this.labelCaption.Location = new System.Drawing.Point(0, 0);
|
|
this.labelCaption.Name = "labelCaption";
|
|
this.labelCaption.Padding = new System.Windows.Forms.Padding(5);
|
|
this.labelCaption.Size = new System.Drawing.Size(488, 35);
|
|
this.labelCaption.TabIndex = 5;
|
|
this.labelCaption.Text = "Title";
|
|
this.labelCaption.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
|
|
//
|
|
// Form_DisplayText
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
|
|
this.CancelButton = this.buttonOk;
|
|
this.ClientSize = new System.Drawing.Size(484, 286);
|
|
this.Controls.Add(this.labelCaption);
|
|
this.Controls.Add(this.richTextBox);
|
|
this.Controls.Add(this.buttonOk);
|
|
this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
|
|
this.Name = "Form_DisplayText";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Show;
|
|
this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
|
|
this.Text = "Form_DisplayText";
|
|
this.ResumeLayout(false);
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button buttonOk;
|
|
private System.Windows.Forms.RichTextBox richTextBox;
|
|
private System.Windows.Forms.Label labelCaption;
|
|
}
|
|
} |