frmWaitingMsg.Designer.cs 3.9 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. namespace FPER
  2. {
  3. partial class frmWaitingMsg
  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(frmWaitingMsg));
  29. this.lblMessageTitle = new System.Windows.Forms.Label();
  30. this.progressBar1 = new System.Windows.Forms.ProgressBar();
  31. this.SuspendLayout();
  32. //
  33. // lblMessageTitle
  34. //
  35. this.lblMessageTitle.BackColor = System.Drawing.Color.Transparent;
  36. this.lblMessageTitle.Font = new System.Drawing.Font("굴림", 9.75F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(129)));
  37. this.lblMessageTitle.Location = new System.Drawing.Point(8, 217);
  38. this.lblMessageTitle.Margin = new System.Windows.Forms.Padding(4, 0, 4, 0);
  39. this.lblMessageTitle.Name = "lblMessageTitle";
  40. this.lblMessageTitle.Size = new System.Drawing.Size(488, 25);
  41. this.lblMessageTitle.TabIndex = 14;
  42. this.lblMessageTitle.Text = "시작준비를 하고 있습니다.";
  43. this.lblMessageTitle.TextAlign = System.Drawing.ContentAlignment.MiddleRight;
  44. //
  45. // progressBar1
  46. //
  47. this.progressBar1.Location = new System.Drawing.Point(10, 239);
  48. this.progressBar1.Name = "progressBar1";
  49. this.progressBar1.Size = new System.Drawing.Size(484, 19);
  50. this.progressBar1.TabIndex = 15;
  51. this.progressBar1.Value = 70;
  52. //
  53. // frmWaittingMsg
  54. //
  55. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.None;
  56. this.BackgroundImage = ((System.Drawing.Image)(resources.GetObject("$this.BackgroundImage")));
  57. this.BackgroundImageLayout = System.Windows.Forms.ImageLayout.None;
  58. this.ClientSize = new System.Drawing.Size(505, 268);
  59. this.Controls.Add(this.progressBar1);
  60. this.Controls.Add(this.lblMessageTitle);
  61. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
  62. this.MaximizeBox = false;
  63. this.MinimizeBox = false;
  64. this.Name = "frmWaittingMsg";
  65. this.ShowIcon = false;
  66. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  67. this.Text = "잠시만 기다려 주십시요..";
  68. this.TopMost = true;
  69. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.frmWaittingMsg_FormClosed);
  70. this.Load += new System.EventHandler(this.frmWaittingMsg_Load);
  71. this.MouseDown += new System.Windows.Forms.MouseEventHandler(this.frmWaittingMsg_MouseDown);
  72. this.MouseMove += new System.Windows.Forms.MouseEventHandler(this.frmWaittingMsg_MouseMove);
  73. this.ResumeLayout(false);
  74. }
  75. #endregion
  76. private System.Windows.Forms.Label lblMessageTitle;
  77. private System.Windows.Forms.ProgressBar progressBar1;
  78. }
  79. }