[1781] | 1 | namespace HeuristicLab.Visualization.DataExport {
|
---|
| 2 | partial class ExportDialog {
|
---|
| 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.lbExporters = new System.Windows.Forms.ListBox();
|
---|
| 27 | this.btnSelectExporter = new System.Windows.Forms.Button();
|
---|
| 28 | this.btnCancel = new System.Windows.Forms.Button();
|
---|
| 29 | this.SuspendLayout();
|
---|
| 30 | //
|
---|
| 31 | // lbExporters
|
---|
| 32 | //
|
---|
| 33 | this.lbExporters.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
|
---|
| 34 | | System.Windows.Forms.AnchorStyles.Left)
|
---|
| 35 | | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 36 | this.lbExporters.FormattingEnabled = true;
|
---|
| 37 | this.lbExporters.Location = new System.Drawing.Point(12, 12);
|
---|
| 38 | this.lbExporters.Name = "lbExporters";
|
---|
| 39 | this.lbExporters.Size = new System.Drawing.Size(204, 160);
|
---|
| 40 | this.lbExporters.TabIndex = 0;
|
---|
| 41 | //
|
---|
| 42 | // btnSelectExporter
|
---|
| 43 | //
|
---|
| 44 | this.btnSelectExporter.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 45 | this.btnSelectExporter.Location = new System.Drawing.Point(60, 184);
|
---|
| 46 | this.btnSelectExporter.Name = "btnSelectExporter";
|
---|
| 47 | this.btnSelectExporter.Size = new System.Drawing.Size(75, 23);
|
---|
| 48 | this.btnSelectExporter.TabIndex = 1;
|
---|
| 49 | this.btnSelectExporter.Text = "Select";
|
---|
| 50 | this.btnSelectExporter.UseVisualStyleBackColor = true;
|
---|
| 51 | this.btnSelectExporter.Click += new System.EventHandler(this.btnSelectExporter_Click);
|
---|
| 52 | //
|
---|
| 53 | // btnCancel
|
---|
| 54 | //
|
---|
| 55 | this.btnCancel.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
|
---|
| 56 | this.btnCancel.Location = new System.Drawing.Point(141, 184);
|
---|
| 57 | this.btnCancel.Name = "btnCancel";
|
---|
| 58 | this.btnCancel.Size = new System.Drawing.Size(75, 23);
|
---|
| 59 | this.btnCancel.TabIndex = 2;
|
---|
| 60 | this.btnCancel.Text = "Cancel";
|
---|
| 61 | this.btnCancel.UseVisualStyleBackColor = true;
|
---|
| 62 | this.btnCancel.Click += new System.EventHandler(this.btnCancel_Click);
|
---|
| 63 | //
|
---|
| 64 | // ExportDialog
|
---|
| 65 | //
|
---|
| 66 | this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
|
---|
| 67 | this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
|
---|
| 68 | this.ClientSize = new System.Drawing.Size(228, 218);
|
---|
| 69 | this.Controls.Add(this.btnCancel);
|
---|
| 70 | this.Controls.Add(this.btnSelectExporter);
|
---|
| 71 | this.Controls.Add(this.lbExporters);
|
---|
| 72 | this.Name = "ExportDialog";
|
---|
| 73 | this.Text = "ExportDialog";
|
---|
| 74 | this.ResumeLayout(false);
|
---|
| 75 |
|
---|
| 76 | }
|
---|
| 77 |
|
---|
| 78 | #endregion
|
---|
| 79 |
|
---|
| 80 | private System.Windows.Forms.ListBox lbExporters;
|
---|
| 81 | private System.Windows.Forms.Button btnSelectExporter;
|
---|
| 82 | private System.Windows.Forms.Button btnCancel;
|
---|
| 83 | }
|
---|
| 84 | } |
---|