home *** CD-ROM | disk | FTP | other *** search
/ Xentax forum attachments archive / xentax.7z / 9146 / BLP Converter.7z / src / BLP Converter / MainForm.Designer.cs < prev    next >
Encoding:
Text File  |  2015-05-02  |  4.4 KB  |  104 lines

  1. ∩╗┐namespace BLP_Converter
  2. {
  3.     partial class MainForm
  4.     {
  5.         /// <summary>
  6.         /// Required designer variable.
  7.         /// </summary>
  8.         private System.ComponentModel.IContainer components = null;
  9.  
  10.         /// <summary>
  11.         /// Clean up any resources being used.
  12.         /// </summary>
  13.         /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
  14.         protected override void Dispose(bool disposing)
  15.         {
  16.             if (disposing && (components != null))
  17.             {
  18.                 components.Dispose();
  19.             }
  20.             base.Dispose(disposing);
  21.         }
  22.  
  23.         #region Windows Form Designer generated code
  24.  
  25.         /// <summary>
  26.         /// Required method for Designer support - do not modify
  27.         /// the contents of this method with the code editor.
  28.         /// </summary>
  29.         private void InitializeComponent()
  30.         {
  31.             System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(MainForm));
  32.             this.btnOpen = new System.Windows.Forms.Button();
  33.             this.btnCopy = new System.Windows.Forms.Button();
  34.             this.blpOutput = new System.Windows.Forms.RichTextBox();
  35.             this.openFileDialog = new System.Windows.Forms.OpenFileDialog();
  36.             this.SuspendLayout();
  37.             // 
  38.             // btnOpen
  39.             // 
  40.             this.btnOpen.Location = new System.Drawing.Point(479, 6);
  41.             this.btnOpen.Name = "btnOpen";
  42.             this.btnOpen.Size = new System.Drawing.Size(105, 23);
  43.             this.btnOpen.TabIndex = 0;
  44.             this.btnOpen.Text = "Open";
  45.             this.btnOpen.UseVisualStyleBackColor = true;
  46.             this.btnOpen.Click += new System.EventHandler(this.btnOpen_Click);
  47.             // 
  48.             // btnCopy
  49.             // 
  50.             this.btnCopy.Location = new System.Drawing.Point(590, 6);
  51.             this.btnCopy.Name = "btnCopy";
  52.             this.btnCopy.Size = new System.Drawing.Size(105, 23);
  53.             this.btnCopy.TabIndex = 1;
  54.             this.btnCopy.Text = "Copy to clipboard";
  55.             this.btnCopy.UseVisualStyleBackColor = true;
  56.             this.btnCopy.Click += new System.EventHandler(this.btnCopy_Click);
  57.             // 
  58.             // blpOutput
  59.             // 
  60.             this.blpOutput.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
  61.             | System.Windows.Forms.AnchorStyles.Left) 
  62.             | System.Windows.Forms.AnchorStyles.Right)));
  63.             this.blpOutput.DetectUrls = false;
  64.             this.blpOutput.Font = new System.Drawing.Font("Consolas", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(204)));
  65.             this.blpOutput.Location = new System.Drawing.Point(4, 35);
  66.             this.blpOutput.Name = "blpOutput";
  67.             this.blpOutput.Size = new System.Drawing.Size(1194, 457);
  68.             this.blpOutput.TabIndex = 2;
  69.             this.blpOutput.Text = "";
  70.             this.blpOutput.WordWrap = false;
  71.             // 
  72.             // openFileDialog
  73.             // 
  74.             this.openFileDialog.Filter = "*.blp|*.blp";
  75.             // 
  76.             // MainForm
  77.             // 
  78.             this.AllowDrop = true;
  79.             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
  80.             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
  81.             this.ClientSize = new System.Drawing.Size(1202, 497);
  82.             this.Controls.Add(this.blpOutput);
  83.             this.Controls.Add(this.btnCopy);
  84.             this.Controls.Add(this.btnOpen);
  85.             this.Icon = ((System.Drawing.Icon)(resources.GetObject("$this.Icon")));
  86.             this.Name = "MainForm";
  87.             this.StartPosition = System.Windows.Forms.FormStartPosition.CenterScreen;
  88.             this.Text = "BLP Converter PC 1.1";
  89.             this.DragDrop += new System.Windows.Forms.DragEventHandler(this.MainForm_DragDrop);
  90.             this.DragEnter += new System.Windows.Forms.DragEventHandler(this.MainForm_DragEnter);
  91.             this.ResumeLayout(false);
  92.  
  93.         }
  94.  
  95.         #endregion
  96.  
  97.         private System.Windows.Forms.Button btnOpen;
  98.         private System.Windows.Forms.Button btnCopy;
  99.         private System.Windows.Forms.RichTextBox blpOutput;
  100.         private System.Windows.Forms.OpenFileDialog openFileDialog;
  101.     }
  102. }
  103.  
  104.