Free cookie consent management tool by TermsFeed Policy Generator

source: trunk/tools/CedmaImporter/ImporterForm.Designer.cs @ 2272

Last change on this file since 2272 was 2259, checked in by gkronber, 15 years ago

Added unfinished implementation of CEDMA importer tool. #719

File size: 2.3 KB
Line 
1namespace CedmaImporter {
2  partial class ImporterForm {
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.problemViewPanel = new System.Windows.Forms.Panel();
27      this.importButton = new System.Windows.Forms.Button();
28      this.SuspendLayout();
29      //
30      // problemViewPanel
31      //
32      this.problemViewPanel.Location = new System.Drawing.Point(12, 12);
33      this.problemViewPanel.Name = "problemViewPanel";
34      this.problemViewPanel.Size = new System.Drawing.Size(260, 211);
35      this.problemViewPanel.TabIndex = 0;
36      //
37      // button1
38      //
39      this.importButton.Location = new System.Drawing.Point(12, 229);
40      this.importButton.Name = "button1";
41      this.importButton.Size = new System.Drawing.Size(75, 23);
42      this.importButton.TabIndex = 1;
43      this.importButton.Text = "button1";
44      this.importButton.UseVisualStyleBackColor = true;
45      this.importButton.Click += new System.EventHandler(this.importButton_Click);
46      //
47      // ImporterForm
48      //
49      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
50      this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
51      this.ClientSize = new System.Drawing.Size(284, 264);
52      this.Controls.Add(this.importButton);
53      this.Controls.Add(this.problemViewPanel);
54      this.Name = "ImporterForm";
55      this.Text = "Form1";
56      this.ResumeLayout(false);
57
58    }
59
60    #endregion
61
62    private System.Windows.Forms.Panel problemViewPanel;
63    private System.Windows.Forms.Button importButton;
64  }
65}
66
Note: See TracBrowser for help on using the repository browser.