Free cookie consent management tool by TermsFeed Policy Generator

Ignore:
Timestamp:
08/14/09 11:13:52 (15 years ago)
Author:
gkronber
Message:

Fixed a bug in the s-expression exporter. Improved exporter UI. #715 & #719

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/CEDMA-Exporter-715/tools/CedmaExporter/CedmaExporterForm.Designer.cs

    r2228 r2286  
    2424    /// </summary>
    2525    private void InitializeComponent() {
    26       this.components = new System.ComponentModel.Container();
     26      this.exportButton = new System.Windows.Forms.Button();
     27      this.progressBar = new System.Windows.Forms.ProgressBar();
     28      this.cancelButton = new System.Windows.Forms.Button();
     29      this.SuspendLayout();
     30      //
     31      // exportButton
     32      //
     33      this.exportButton.Location = new System.Drawing.Point(12, 12);
     34      this.exportButton.Name = "exportButton";
     35      this.exportButton.Size = new System.Drawing.Size(75, 23);
     36      this.exportButton.TabIndex = 0;
     37      this.exportButton.Text = "Export...";
     38      this.exportButton.UseVisualStyleBackColor = true;
     39      this.exportButton.Click += new System.EventHandler(this.exportButton_Click);
     40      //
     41      // progressBar
     42      //
     43      this.progressBar.Location = new System.Drawing.Point(12, 41);
     44      this.progressBar.Name = "progressBar";
     45      this.progressBar.Size = new System.Drawing.Size(260, 23);
     46      this.progressBar.TabIndex = 1;
     47      //
     48      // cancelButton
     49      //
     50      this.cancelButton.Enabled = false;
     51      this.cancelButton.Location = new System.Drawing.Point(94, 11);
     52      this.cancelButton.Name = "cancelButton";
     53      this.cancelButton.Size = new System.Drawing.Size(75, 23);
     54      this.cancelButton.TabIndex = 2;
     55      this.cancelButton.Text = "Cancel";
     56      this.cancelButton.UseVisualStyleBackColor = true;
     57      this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
     58      //
     59      // CedmaExporterForm
     60      //
     61      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
    2762      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
    28       this.Text = "Form1";
     63      this.ClientSize = new System.Drawing.Size(284, 81);
     64      this.Controls.Add(this.cancelButton);
     65      this.Controls.Add(this.progressBar);
     66      this.Controls.Add(this.exportButton);
     67      this.Name = "CedmaExporterForm";
     68      this.Text = "CEDMA Exporter";
     69      this.ResumeLayout(false);
     70
    2971    }
    3072
    3173    #endregion
     74
     75    private System.Windows.Forms.Button exportButton;
     76    private System.Windows.Forms.ProgressBar progressBar;
     77    private System.Windows.Forms.Button cancelButton;
    3278  }
    3379}
Note: See TracChangeset for help on using the changeset viewer.