91 lines
2.9 KiB
C#
91 lines
2.9 KiB
C#
namespace NewsCrawler
|
|
{
|
|
partial class ModelessPopup
|
|
{
|
|
/// <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.btnYes = new System.Windows.Forms.Button();
|
|
this.btnCancel = new System.Windows.Forms.Button();
|
|
this.tbMsg = new System.Windows.Forms.TextBox();
|
|
this.SuspendLayout();
|
|
//
|
|
// btnYes
|
|
//
|
|
this.btnYes.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
|
this.btnYes.Location = new System.Drawing.Point(164, 118);
|
|
this.btnYes.Name = "btnYes";
|
|
this.btnYes.Size = new System.Drawing.Size(75, 23);
|
|
this.btnYes.TabIndex = 0;
|
|
this.btnYes.Text = "예";
|
|
this.btnYes.UseVisualStyleBackColor = true;
|
|
this.btnYes.Click += new System.EventHandler(this.btnYes_Click);
|
|
//
|
|
// 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(245, 118);
|
|
this.btnCancel.Name = "btnCancel";
|
|
this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
|
this.btnCancel.TabIndex = 1;
|
|
this.btnCancel.Text = "취소";
|
|
this.btnCancel.UseVisualStyleBackColor = true;
|
|
this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
|
//
|
|
// tbMsg
|
|
//
|
|
this.tbMsg.BorderStyle = System.Windows.Forms.BorderStyle.None;
|
|
this.tbMsg.Location = new System.Drawing.Point(12, 12);
|
|
this.tbMsg.Multiline = true;
|
|
this.tbMsg.Name = "tbMsg";
|
|
this.tbMsg.ReadOnly = true;
|
|
this.tbMsg.Size = new System.Drawing.Size(308, 100);
|
|
this.tbMsg.TabIndex = 3;
|
|
//
|
|
// ModelessPopup
|
|
//
|
|
this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
|
|
this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
|
this.ClientSize = new System.Drawing.Size(332, 153);
|
|
this.Controls.Add(this.tbMsg);
|
|
this.Controls.Add(this.btnCancel);
|
|
this.Controls.Add(this.btnYes);
|
|
this.Name = "ModelessPopup";
|
|
this.ShowIcon = false;
|
|
this.ShowInTaskbar = false;
|
|
this.Text = "수동종목";
|
|
this.ResumeLayout(false);
|
|
this.PerformLayout();
|
|
|
|
}
|
|
|
|
#endregion
|
|
|
|
private System.Windows.Forms.Button btnYes;
|
|
private System.Windows.Forms.Button btnCancel;
|
|
private System.Windows.Forms.TextBox tbMsg;
|
|
}
|
|
} |