83 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
			
		
		
	
	
			83 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			C#
		
	
	
	
	
	
| 
 | |
| namespace JobReportMailService
 | |
| {
 | |
|     partial class fJobReportWeek
 | |
|     {
 | |
|         /// <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(fJobReportWeek));
 | |
|             this.toolStrip1 = new System.Windows.Forms.ToolStrip();
 | |
|             this.btRun = new System.Windows.Forms.ToolStripButton();
 | |
|             this.toolStrip1.SuspendLayout();
 | |
|             this.SuspendLayout();
 | |
|             // 
 | |
|             // timer1
 | |
|             // 
 | |
|             this.timer1.Tick += new System.EventHandler(this.timer1_Tick);
 | |
|             // 
 | |
|             // toolStrip1
 | |
|             // 
 | |
|             this.toolStrip1.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
 | |
|             this.btRun});
 | |
|             this.toolStrip1.Location = new System.Drawing.Point(0, 0);
 | |
|             this.toolStrip1.Name = "toolStrip1";
 | |
|             this.toolStrip1.Size = new System.Drawing.Size(473, 25);
 | |
|             this.toolStrip1.TabIndex = 3;
 | |
|             this.toolStrip1.Text = "toolStrip1";
 | |
|             // 
 | |
|             // btRun
 | |
|             // 
 | |
|             this.btRun.Image = ((System.Drawing.Image)(resources.GetObject("btRun.Image")));
 | |
|             this.btRun.ImageTransparentColor = System.Drawing.Color.Magenta;
 | |
|             this.btRun.Name = "btRun";
 | |
|             this.btRun.Size = new System.Drawing.Size(48, 22);
 | |
|             this.btRun.Text = "Run";
 | |
|             this.btRun.Click += new System.EventHandler(this.toolStripButton1_Click);
 | |
|             // 
 | |
|             // fJobReportWeek
 | |
|             // 
 | |
|             this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
 | |
|             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
 | |
|             this.ClientSize = new System.Drawing.Size(473, 416);
 | |
|             this.Controls.Add(this.toolStrip1);
 | |
|             this.Name = "fJobReportWeek";
 | |
|             this.Text = "업무일지(주간보고)";
 | |
|             this.Load += new System.EventHandler(this.fJobReportDay_Load);
 | |
|             this.Controls.SetChildIndex(this.toolStrip1, 0);
 | |
|             this.toolStrip1.ResumeLayout(false);
 | |
|             this.toolStrip1.PerformLayout();
 | |
|             this.ResumeLayout(false);
 | |
|             this.PerformLayout();
 | |
| 
 | |
|         }
 | |
| 
 | |
|         #endregion
 | |
| 
 | |
|         private System.Windows.Forms.ToolStrip toolStrip1;
 | |
|         private System.Windows.Forms.ToolStripButton btRun;
 | |
|     }
 | |
| } | 
