Form1.Designer.cs 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. namespace PLCLogger
  2. {
  3. partial class Form1
  4. {
  5. /// <summary>
  6. /// 필수 디자이너 변수입니다.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// 사용 중인 모든 리소스를 정리합니다.
  11. /// </summary>
  12. /// <param name="disposing">관리되는 리소스를 삭제해야 하면 true이고, 그렇지 않으면 false입니다.</param>
  13. protected override void Dispose(bool disposing)
  14. {
  15. if (disposing && (components != null))
  16. {
  17. components.Dispose();
  18. }
  19. base.Dispose(disposing);
  20. }
  21. #region Windows Form 디자이너에서 생성한 코드
  22. /// <summary>
  23. /// 디자이너 지원에 필요한 메서드입니다.
  24. /// 이 메서드의 내용을 코드 편집기로 수정하지 마세요.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
  29. this.lvwPLC = new System.Windows.Forms.ListView();
  30. this.SuspendLayout();
  31. //
  32. // lvwPLC
  33. //
  34. this.lvwPLC.HideSelection = false;
  35. this.lvwPLC.Location = new System.Drawing.Point(12, 12);
  36. this.lvwPLC.Name = "lvwPLC";
  37. this.lvwPLC.Size = new System.Drawing.Size(407, 108);
  38. this.lvwPLC.TabIndex = 15;
  39. this.lvwPLC.UseCompatibleStateImageBehavior = false;
  40. //
  41. // Form1
  42. //
  43. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
  44. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  45. this.ClientSize = new System.Drawing.Size(431, 131);
  46. this.Controls.Add(this.lvwPLC);
  47. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  48. this.Name = "Form1";
  49. this.Text = "Form1";
  50. this.ResumeLayout(false);
  51. }
  52. #endregion
  53. private System.Windows.Forms.ListView lvwPLC;
  54. }
  55. }