ExporterForm.Designer.cs 6.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. namespace Max2Babylon
  2. {
  3. partial class ExporterForm
  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.butExport = new System.Windows.Forms.Button();
  29. this.label1 = new System.Windows.Forms.Label();
  30. this.txtFilename = new System.Windows.Forms.TextBox();
  31. this.butBrowse = new System.Windows.Forms.Button();
  32. this.saveFileDialog = new System.Windows.Forms.SaveFileDialog();
  33. this.progressBar = new System.Windows.Forms.ProgressBar();
  34. this.treeView = new System.Windows.Forms.TreeView();
  35. this.SuspendLayout();
  36. //
  37. // butExport
  38. //
  39. this.butExport.Anchor = System.Windows.Forms.AnchorStyles.Top;
  40. this.butExport.Enabled = false;
  41. this.butExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  42. this.butExport.Location = new System.Drawing.Point(321, 50);
  43. this.butExport.Name = "butExport";
  44. this.butExport.Size = new System.Drawing.Size(80, 23);
  45. this.butExport.TabIndex = 0;
  46. this.butExport.Text = "Export";
  47. this.butExport.UseVisualStyleBackColor = true;
  48. this.butExport.Click += new System.EventHandler(this.butExport_Click);
  49. //
  50. // label1
  51. //
  52. this.label1.AutoSize = true;
  53. this.label1.Location = new System.Drawing.Point(12, 9);
  54. this.label1.Name = "label1";
  55. this.label1.Size = new System.Drawing.Size(52, 13);
  56. this.label1.TabIndex = 2;
  57. this.label1.Text = "Filename:";
  58. //
  59. // txtFilename
  60. //
  61. this.txtFilename.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
  62. | System.Windows.Forms.AnchorStyles.Right)));
  63. this.txtFilename.Location = new System.Drawing.Point(12, 25);
  64. this.txtFilename.Name = "txtFilename";
  65. this.txtFilename.Size = new System.Drawing.Size(650, 20);
  66. this.txtFilename.TabIndex = 3;
  67. this.txtFilename.TextChanged += new System.EventHandler(this.txtFilename_TextChanged);
  68. //
  69. // butBrowse
  70. //
  71. this.butBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
  72. this.butBrowse.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
  73. this.butBrowse.Location = new System.Drawing.Point(668, 22);
  74. this.butBrowse.Name = "butBrowse";
  75. this.butBrowse.Size = new System.Drawing.Size(43, 23);
  76. this.butBrowse.TabIndex = 4;
  77. this.butBrowse.Text = "...";
  78. this.butBrowse.UseVisualStyleBackColor = true;
  79. this.butBrowse.Click += new System.EventHandler(this.butBrowse_Click);
  80. //
  81. // saveFileDialog
  82. //
  83. this.saveFileDialog.DefaultExt = "babylon";
  84. this.saveFileDialog.Filter = "Babylon files|*.babylon";
  85. this.saveFileDialog.RestoreDirectory = true;
  86. //
  87. // progressBar
  88. //
  89. this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
  90. | System.Windows.Forms.AnchorStyles.Right)));
  91. this.progressBar.Location = new System.Drawing.Point(12, 486);
  92. this.progressBar.Name = "progressBar";
  93. this.progressBar.Size = new System.Drawing.Size(699, 23);
  94. this.progressBar.TabIndex = 5;
  95. //
  96. // treeView
  97. //
  98. this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
  99. | System.Windows.Forms.AnchorStyles.Left)
  100. | System.Windows.Forms.AnchorStyles.Right)));
  101. this.treeView.Location = new System.Drawing.Point(12, 80);
  102. this.treeView.Name = "treeView";
  103. this.treeView.Size = new System.Drawing.Size(699, 401);
  104. this.treeView.TabIndex = 6;
  105. //
  106. // ExporterForm
  107. //
  108. this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  109. this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  110. this.ClientSize = new System.Drawing.Size(723, 525);
  111. this.Controls.Add(this.treeView);
  112. this.Controls.Add(this.progressBar);
  113. this.Controls.Add(this.butExport);
  114. this.Controls.Add(this.butBrowse);
  115. this.Controls.Add(this.txtFilename);
  116. this.Controls.Add(this.label1);
  117. this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
  118. this.MinimumSize = new System.Drawing.Size(500, 300);
  119. this.Name = "ExporterForm";
  120. this.ShowInTaskbar = true;
  121. this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  122. this.Text = "Babylon.js - Export scene to .babylon file";
  123. this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ExporterForm_FormClosed);
  124. this.Load += new System.EventHandler(this.ExporterForm_Load);
  125. this.ResumeLayout(false);
  126. this.PerformLayout();
  127. }
  128. #endregion
  129. private System.Windows.Forms.Button butExport;
  130. private System.Windows.Forms.Label label1;
  131. private System.Windows.Forms.TextBox txtFilename;
  132. private System.Windows.Forms.Button butBrowse;
  133. private System.Windows.Forms.SaveFileDialog saveFileDialog;
  134. private System.Windows.Forms.ProgressBar progressBar;
  135. private System.Windows.Forms.TreeView treeView;
  136. }
  137. }