ConfigForm.Designer.cs 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114
  1. namespace CLIP.eForm.Consent.UI
  2. {
  3. partial class ConfigForm
  4. {
  5. /// <summary>
  6. /// Required designer variable.
  7. /// </summary>
  8. private System.ComponentModel.IContainer components = null;
  9. /// <summary>
  10. /// Clean up any resources being used.
  11. /// </summary>
  12. /// <param name="disposing">true if managed resources should be disposed; otherwise, 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 Designer generated code
  22. /// <summary>
  23. /// Required method for Designer support - do not modify
  24. /// the contents of this method with the code editor.
  25. /// </summary>
  26. private void InitializeComponent()
  27. {
  28. this.btnClose = new System.Windows.Forms.Button();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.fixedMonitor = new System.Windows.Forms.NumericUpDown();
  31. this.btnSave = new System.Windows.Forms.Button();
  32. ((System.ComponentModel.ISupportInitialize)(this.fixedMonitor)).BeginInit();
  33. this.SuspendLayout();
  34. //
  35. // btnClose
  36. //
  37. this.btnClose.Location = new System.Drawing.Point(115, 82);
  38. this.btnClose.Name = "btnClose";
  39. this.btnClose.Size = new System.Drawing.Size(75, 24);
  40. this.btnClose.TabIndex = 0;
  41. this.btnClose.Text = "닫기";
  42. this.btnClose.UseVisualStyleBackColor = true;
  43. this.btnClose.Click += new System.EventHandler(this.btnOK_Click);
  44. //
  45. // label1
  46. //
  47. this.label1.AutoSize = true;
  48. this.label1.Location = new System.Drawing.Point(12, 40);
  49. this.label1.Name = "label1";
  50. this.label1.Size = new System.Drawing.Size(125, 12);
  51. this.label1.TabIndex = 2;
  52. this.label1.Text = "환자 작성 모니터 번호";
  53. //
  54. // fixedMonitor
  55. //
  56. this.fixedMonitor.Font = new System.Drawing.Font("굴림", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  57. this.fixedMonitor.Location = new System.Drawing.Point(149, 37);
  58. this.fixedMonitor.Maximum = new decimal(new int[] {
  59. 256,
  60. 0,
  61. 0,
  62. 0});
  63. this.fixedMonitor.Name = "fixedMonitor";
  64. this.fixedMonitor.Size = new System.Drawing.Size(41, 22);
  65. this.fixedMonitor.TabIndex = 3;
  66. this.fixedMonitor.Value = new decimal(new int[] {
  67. 1,
  68. 0,
  69. 0,
  70. 0});
  71. //
  72. // btnSave
  73. //
  74. this.btnSave.Location = new System.Drawing.Point(34, 82);
  75. this.btnSave.Name = "btnSave";
  76. this.btnSave.Size = new System.Drawing.Size(75, 24);
  77. this.btnSave.TabIndex = 4;
  78. this.btnSave.Text = "저장";
  79. this.btnSave.UseVisualStyleBackColor = true;
  80. this.btnSave.Click += new System.EventHandler(this.button1_Click);
  81. //
  82. // ConfigForm
  83. //
  84. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 12F);
  85. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  86. this.ClientSize = new System.Drawing.Size(217, 124);
  87. this.Controls.Add(this.btnSave);
  88. this.Controls.Add(this.fixedMonitor);
  89. this.Controls.Add(this.label1);
  90. this.Controls.Add(this.btnClose);
  91. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
  92. this.MaximizeBox = false;
  93. this.MinimizeBox = false;
  94. this.Name = "ConfigForm";
  95. this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
  96. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
  97. this.Text = "환경설정";
  98. ((System.ComponentModel.ISupportInitialize)(this.fixedMonitor)).EndInit();
  99. this.ResumeLayout(false);
  100. this.PerformLayout();
  101. }
  102. #endregion
  103. private System.Windows.Forms.Button btnClose;
  104. private System.Windows.Forms.Label label1;
  105. private System.Windows.Forms.NumericUpDown fixedMonitor;
  106. private System.Windows.Forms.Button btnSave;
  107. }
  108. }