Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/CedmaExporter/CedmaExporterForm.Designer.cs @ 3328

Last change on this file since 3328 was 2286, checked in by gkronber, 15 years ago

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

File size: 2.9 KB
Line 
1namespace CedmaExporter {
2  partial class CedmaExporterForm {
3    /// <summary>
4    /// Required designer variable.
5    /// </summary>
6    private System.ComponentModel.IContainer components = null;
7
8    /// <summary>
9    /// Clean up any resources being used.
10    /// </summary>
11    /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
12    protected override void Dispose(bool disposing) {
13      if (disposing && (components != null)) {
14        components.Dispose();
15      }
16      base.Dispose(disposing);
17    }
18
19    #region Windows Form Designer generated code
20
21    /// <summary>
22    /// Required method for Designer support - do not modify
23    /// the contents of this method with the code editor.
24    /// </summary>
25    private void InitializeComponent() {
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);
62      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
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
71    }
72
73    #endregion
74
75    private System.Windows.Forms.Button exportButton;
76    private System.Windows.Forms.ProgressBar progressBar;
77    private System.Windows.Forms.Button cancelButton;
78  }
79}
80
Note: See TracBrowser for help on using the repository browser.