namespace Max2Babylon { partial class ExporterForm { /// /// Required designer variable. /// private System.ComponentModel.IContainer components = null; /// /// Clean up any resources being used. /// /// true if managed resources should be disposed; otherwise, false. protected override void Dispose(bool disposing) { if (disposing && (components != null)) { components.Dispose(); } base.Dispose(disposing); } #region Windows Form Designer generated code /// /// Required method for Designer support - do not modify /// the contents of this method with the code editor. /// private void InitializeComponent() { System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(ExporterForm)); this.butExport = new System.Windows.Forms.Button(); this.label1 = new System.Windows.Forms.Label(); this.txtFilename = new System.Windows.Forms.TextBox(); this.butBrowse = new System.Windows.Forms.Button(); this.saveFileDialog = new System.Windows.Forms.SaveFileDialog(); this.progressBar = new System.Windows.Forms.ProgressBar(); this.treeView = new System.Windows.Forms.TreeView(); this.butCancel = new System.Windows.Forms.Button(); this.pictureBox1 = new System.Windows.Forms.PictureBox(); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).BeginInit(); this.SuspendLayout(); // // butExport // this.butExport.Anchor = System.Windows.Forms.AnchorStyles.Top; this.butExport.Enabled = false; this.butExport.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.butExport.Location = new System.Drawing.Point(368, 51); this.butExport.Name = "butExport"; this.butExport.Size = new System.Drawing.Size(80, 23); this.butExport.TabIndex = 0; this.butExport.Text = "Export"; this.butExport.UseVisualStyleBackColor = true; this.butExport.Click += new System.EventHandler(this.butExport_Click); // // label1 // this.label1.AutoSize = true; this.label1.Location = new System.Drawing.Point(150, 9); this.label1.Name = "label1"; this.label1.Size = new System.Drawing.Size(52, 13); this.label1.TabIndex = 2; this.label1.Text = "Filename:"; // // txtFilename // this.txtFilename.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.txtFilename.Location = new System.Drawing.Point(150, 25); this.txtFilename.Name = "txtFilename"; this.txtFilename.Size = new System.Drawing.Size(481, 20); this.txtFilename.TabIndex = 3; this.txtFilename.TextChanged += new System.EventHandler(this.txtFilename_TextChanged); // // butBrowse // this.butBrowse.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right))); this.butBrowse.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.butBrowse.Location = new System.Drawing.Point(637, 22); this.butBrowse.Name = "butBrowse"; this.butBrowse.Size = new System.Drawing.Size(43, 23); this.butBrowse.TabIndex = 4; this.butBrowse.Text = "..."; this.butBrowse.UseVisualStyleBackColor = true; this.butBrowse.Click += new System.EventHandler(this.butBrowse_Click); // // saveFileDialog // this.saveFileDialog.DefaultExt = "babylon"; this.saveFileDialog.Filter = "Babylon files|*.babylon"; this.saveFileDialog.RestoreDirectory = true; // // progressBar // this.progressBar.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.progressBar.Location = new System.Drawing.Point(153, 418); this.progressBar.Name = "progressBar"; this.progressBar.Size = new System.Drawing.Size(441, 23); this.progressBar.TabIndex = 5; // // treeView // this.treeView.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) | System.Windows.Forms.AnchorStyles.Left) | System.Windows.Forms.AnchorStyles.Right))); this.treeView.Location = new System.Drawing.Point(153, 80); this.treeView.Name = "treeView"; this.treeView.Size = new System.Drawing.Size(527, 333); this.treeView.TabIndex = 6; // // butCancel // this.butCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right))); this.butCancel.Enabled = false; this.butCancel.FlatStyle = System.Windows.Forms.FlatStyle.Flat; this.butCancel.Location = new System.Drawing.Point(600, 418); this.butCancel.Name = "butCancel"; this.butCancel.Size = new System.Drawing.Size(80, 23); this.butCancel.TabIndex = 7; this.butCancel.Text = "Cancel"; this.butCancel.UseVisualStyleBackColor = true; this.butCancel.Click += new System.EventHandler(this.butCancel_Click); // // pictureBox1 // this.pictureBox1.Image = ((System.Drawing.Image)(resources.GetObject("pictureBox1.Image"))); this.pictureBox1.Location = new System.Drawing.Point(12, 12); this.pictureBox1.Name = "pictureBox1"; this.pictureBox1.Size = new System.Drawing.Size(132, 302); this.pictureBox1.TabIndex = 8; this.pictureBox1.TabStop = false; // // ExporterForm // this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F); this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font; this.ClientSize = new System.Drawing.Size(692, 457); this.Controls.Add(this.pictureBox1); this.Controls.Add(this.butCancel); this.Controls.Add(this.treeView); this.Controls.Add(this.progressBar); this.Controls.Add(this.butExport); this.Controls.Add(this.butBrowse); this.Controls.Add(this.txtFilename); this.Controls.Add(this.label1); this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow; this.MinimumSize = new System.Drawing.Size(500, 400); this.Name = "ExporterForm"; this.ShowInTaskbar = true; this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen; this.Text = "Babylon.js - Export scene to .babylon file"; this.FormClosed += new System.Windows.Forms.FormClosedEventHandler(this.ExporterForm_FormClosed); this.Load += new System.EventHandler(this.ExporterForm_Load); ((System.ComponentModel.ISupportInitialize)(this.pictureBox1)).EndInit(); this.ResumeLayout(false); this.PerformLayout(); } #endregion private System.Windows.Forms.Button butExport; private System.Windows.Forms.Label label1; private System.Windows.Forms.TextBox txtFilename; private System.Windows.Forms.Button butBrowse; private System.Windows.Forms.SaveFileDialog saveFileDialog; private System.Windows.Forms.ProgressBar progressBar; private System.Windows.Forms.TreeView treeView; private System.Windows.Forms.Button butCancel; private System.Windows.Forms.PictureBox pictureBox1; } }