IISRedirectToHTTPS.Designer.cs 5.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127
  1. namespace IISRedirectToHTTPS
  2. {
  3. partial class IISRedirectToHTTPS
  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(IISRedirectToHTTPS));
  29. this.cb_Site = new System.Windows.Forms.ComboBox();
  30. this.nud_HttpsPort = new System.Windows.Forms.NumericUpDown();
  31. this.btn_Registry = new System.Windows.Forms.Button();
  32. this.label1 = new System.Windows.Forms.Label();
  33. this.label2 = new System.Windows.Forms.Label();
  34. ((System.ComponentModel.ISupportInitialize)(this.nud_HttpsPort)).BeginInit();
  35. this.SuspendLayout();
  36. //
  37. // cb_Site
  38. //
  39. this.cb_Site.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
  40. this.cb_Site.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  41. this.cb_Site.FormattingEnabled = true;
  42. this.cb_Site.Location = new System.Drawing.Point(83, 13);
  43. this.cb_Site.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  44. this.cb_Site.Name = "cb_Site";
  45. this.cb_Site.Size = new System.Drawing.Size(121, 23);
  46. this.cb_Site.Sorted = true;
  47. this.cb_Site.TabIndex = 3;
  48. //
  49. // nud_HttpsPort
  50. //
  51. this.nud_HttpsPort.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  52. this.nud_HttpsPort.Location = new System.Drawing.Point(83, 44);
  53. this.nud_HttpsPort.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  54. this.nud_HttpsPort.Maximum = new decimal(new int[] {
  55. 65536,
  56. 0,
  57. 0,
  58. 0});
  59. this.nud_HttpsPort.Name = "nud_HttpsPort";
  60. this.nud_HttpsPort.Size = new System.Drawing.Size(121, 23);
  61. this.nud_HttpsPort.TabIndex = 6;
  62. this.nud_HttpsPort.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
  63. //
  64. // btn_Registry
  65. //
  66. this.btn_Registry.Location = new System.Drawing.Point(210, 13);
  67. this.btn_Registry.Name = "btn_Registry";
  68. this.btn_Registry.Size = new System.Drawing.Size(105, 54);
  69. this.btn_Registry.TabIndex = 7;
  70. this.btn_Registry.Text = "규칙 등록";
  71. this.btn_Registry.UseVisualStyleBackColor = true;
  72. this.btn_Registry.Click += new System.EventHandler(this.btn_Registry_Click);
  73. //
  74. // label1
  75. //
  76. this.label1.Location = new System.Drawing.Point(12, 13);
  77. this.label1.Name = "label1";
  78. this.label1.Size = new System.Drawing.Size(65, 23);
  79. this.label1.TabIndex = 8;
  80. this.label1.Text = "IIS Site";
  81. this.label1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  82. //
  83. // label2
  84. //
  85. this.label2.Location = new System.Drawing.Point(12, 44);
  86. this.label2.Name = "label2";
  87. this.label2.Size = new System.Drawing.Size(65, 23);
  88. this.label2.TabIndex = 9;
  89. this.label2.Text = "Https Port";
  90. this.label2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
  91. //
  92. // IISRedirectToHTTPS
  93. //
  94. this.AutoScaleDimensions = new System.Drawing.SizeF(7F, 15F);
  95. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  96. this.ClientSize = new System.Drawing.Size(327, 81);
  97. this.Controls.Add(this.label2);
  98. this.Controls.Add(this.label1);
  99. this.Controls.Add(this.btn_Registry);
  100. this.Controls.Add(this.nud_HttpsPort);
  101. this.Controls.Add(this.cb_Site);
  102. this.Font = new System.Drawing.Font("맑은 고딕", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  103. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedSingle;
  104. this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  105. this.Margin = new System.Windows.Forms.Padding(3, 4, 3, 4);
  106. this.MaximizeBox = false;
  107. this.MinimizeBox = false;
  108. this.Name = "IISRedirectToHTTPS";
  109. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  110. this.Text = "IIS Redirect To HTTPS";
  111. ((System.ComponentModel.ISupportInitialize)(this.nud_HttpsPort)).EndInit();
  112. this.ResumeLayout(false);
  113. }
  114. #endregion
  115. private System.Windows.Forms.ComboBox cb_Site;
  116. private System.Windows.Forms.NumericUpDown nud_HttpsPort;
  117. private System.Windows.Forms.Button btn_Registry;
  118. private System.Windows.Forms.Label label1;
  119. private System.Windows.Forms.Label label2;
  120. }
  121. }