SelectLanguageForm.Designer.cs 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112
  1. namespace FastReport.Forms
  2. {
  3. partial class SelectLanguageForm
  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.lbxLanguages = new System.Windows.Forms.ListBox();
  29. this.tbFolder = new FastReport.Controls.TextBoxButton();
  30. this.lblFolder = new System.Windows.Forms.Label();
  31. this.lblSelect = new System.Windows.Forms.Label();
  32. this.SuspendLayout();
  33. //
  34. // btnOk
  35. //
  36. this.btnOk.Location = new System.Drawing.Point(92, 332);
  37. //
  38. // btnCancel
  39. //
  40. this.btnCancel.Location = new System.Drawing.Point(172, 332);
  41. //
  42. // lbxLanguages
  43. //
  44. this.lbxLanguages.FormattingEnabled = true;
  45. this.lbxLanguages.IntegralHeight = false;
  46. this.lbxLanguages.Location = new System.Drawing.Point(12, 32);
  47. this.lbxLanguages.Name = "lbxLanguages";
  48. this.lbxLanguages.Size = new System.Drawing.Size(236, 228);
  49. this.lbxLanguages.TabIndex = 1;
  50. this.lbxLanguages.DoubleClick += new System.EventHandler(this.lbxLanguages_DoubleClick);
  51. //
  52. // tbFolder
  53. //
  54. this.tbFolder.Image = null;
  55. this.tbFolder.Location = new System.Drawing.Point(12, 288);
  56. this.tbFolder.Name = "tbFolder";
  57. this.tbFolder.Size = new System.Drawing.Size(236, 21);
  58. this.tbFolder.TabIndex = 2;
  59. this.tbFolder.ButtonClick += new System.EventHandler(this.tbFolder_ButtonClick);
  60. //
  61. // lblFolder
  62. //
  63. this.lblFolder.AutoSize = true;
  64. this.lblFolder.Location = new System.Drawing.Point(12, 268);
  65. this.lblFolder.Name = "lblFolder";
  66. this.lblFolder.Size = new System.Drawing.Size(133, 13);
  67. this.lblFolder.TabIndex = 3;
  68. this.lblFolder.Text = "Folder with language files:";
  69. //
  70. // lblSelect
  71. //
  72. this.lblSelect.AutoSize = true;
  73. this.lblSelect.Location = new System.Drawing.Point(12, 12);
  74. this.lblSelect.Name = "lblSelect";
  75. this.lblSelect.Size = new System.Drawing.Size(178, 13);
  76. this.lblSelect.TabIndex = 4;
  77. this.lblSelect.Text = "Select language from the list below:";
  78. //
  79. // SelectLanguageForm
  80. //
  81. this.AutoScaleDimensions = new System.Drawing.SizeF(96F, 96F);
  82. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Dpi;
  83. this.ClientSize = new System.Drawing.Size(259, 369);
  84. this.Controls.Add(this.lblSelect);
  85. this.Controls.Add(this.lblFolder);
  86. this.Controls.Add(this.tbFolder);
  87. this.Controls.Add(this.lbxLanguages);
  88. this.Name = "SelectLanguageForm";
  89. this.Text = "Select Language";
  90. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.SelectLanguageForm_FormClosed);
  91. this.Controls.SetChildIndex(this.btnOk, 0);
  92. this.Controls.SetChildIndex(this.btnCancel, 0);
  93. this.Controls.SetChildIndex(this.lbxLanguages, 0);
  94. this.Controls.SetChildIndex(this.tbFolder, 0);
  95. this.Controls.SetChildIndex(this.lblFolder, 0);
  96. this.Controls.SetChildIndex(this.lblSelect, 0);
  97. this.ResumeLayout(false);
  98. this.PerformLayout();
  99. }
  100. #endregion
  101. private System.Windows.Forms.ListBox lbxLanguages;
  102. private FastReport.Controls.TextBoxButton tbFolder;
  103. private System.Windows.Forms.Label lblFolder;
  104. private System.Windows.Forms.Label lblSelect;
  105. }
  106. }