116 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			116 lines
		
	
	
		
			4.8 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| namespace Project.Dialog
 | |
| {
 | |
| 	partial class fVAR
 | |
| 	{
 | |
| 		/// <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.components = new System.ComponentModel.Container();
 | |
|             this.comboBox1 = new System.Windows.Forms.ComboBox();
 | |
|             this.listView1 = new System.Windows.Forms.ListView();
 | |
|             this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
 | |
|             this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
 | |
|             this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
 | |
|             this.timer1 = new System.Windows.Forms.Timer(this.components);
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // comboBox1
 | |
|             // 
 | |
|             this.comboBox1.Dock = System.Windows.Forms.DockStyle.Top;
 | |
|             this.comboBox1.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
 | |
|             this.comboBox1.Font = new System.Drawing.Font("맑은 고딕", 15F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
 | |
|             this.comboBox1.FormattingEnabled = true;
 | |
|             this.comboBox1.Location = new System.Drawing.Point(0, 0);
 | |
|             this.comboBox1.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
 | |
|             this.comboBox1.Name = "comboBox1";
 | |
|             this.comboBox1.Size = new System.Drawing.Size(326, 36);
 | |
|             this.comboBox1.TabIndex = 0;
 | |
|             this.comboBox1.SelectedIndexChanged += new System.EventHandler(this.comboBox1_SelectedIndexChanged);
 | |
|             // 
 | |
|             // listView1
 | |
|             // 
 | |
|             this.listView1.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
 | |
|             this.columnHeader1,
 | |
|             this.columnHeader2,
 | |
|             this.columnHeader3});
 | |
|             this.listView1.Dock = System.Windows.Forms.DockStyle.Fill;
 | |
|             this.listView1.FullRowSelect = true;
 | |
|             this.listView1.GridLines = true;
 | |
|             this.listView1.Location = new System.Drawing.Point(0, 36);
 | |
|             this.listView1.Name = "listView1";
 | |
|             this.listView1.Size = new System.Drawing.Size(326, 537);
 | |
|             this.listView1.TabIndex = 1;
 | |
|             this.listView1.Tag = "11";
 | |
|             this.listView1.UseCompatibleStateImageBehavior = false;
 | |
|             this.listView1.View = System.Windows.Forms.View.Details;
 | |
|             // 
 | |
|             // columnHeader1
 | |
|             // 
 | |
|             this.columnHeader1.Text = "IDX";
 | |
|             // 
 | |
|             // columnHeader2
 | |
|             // 
 | |
|             this.columnHeader2.Text = "Title";
 | |
|             this.columnHeader2.Width = 150;
 | |
|             // 
 | |
|             // columnHeader3
 | |
|             // 
 | |
|             this.columnHeader3.Text = "Value";
 | |
|             this.columnHeader3.Width = 100;
 | |
|             // 
 | |
|             // timer1
 | |
|             // 
 | |
|             this.timer1.Interval = 500;
 | |
|             this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
 | |
|             // 
 | |
|             // fVAR
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(326, 573);
 | |
|             this.Controls.Add(this.listView1);
 | |
|             this.Controls.Add(this.comboBox1);
 | |
|             this.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
 | |
|             this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
 | |
|             this.Name = "fVAR";
 | |
|             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
 | |
|             this.Text = "fVAR";
 | |
|             this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.fVAR_FormClosed);
 | |
|             this.Load += new System.EventHandler(this.fVAR_Load);
 | |
|             this.ResumeLayout(false);
 | |
| 
 | |
| 		}
 | |
| 
 | |
| 		#endregion
 | |
| 
 | |
| 		private System.Windows.Forms.ComboBox comboBox1;
 | |
| 		private System.Windows.Forms.ListView listView1;
 | |
| 		private System.Windows.Forms.ColumnHeader columnHeader1;
 | |
| 		private System.Windows.Forms.ColumnHeader columnHeader2;
 | |
| 		private System.Windows.Forms.ColumnHeader columnHeader3;
 | |
| 		private System.Windows.Forms.Timer timer1;
 | |
| 	}
 | |
| } | 
