MainForm.Designer.cs
author StephaneLenclud
Thu, 14 May 2015 22:43:17 +0200
changeset 0 1d4344872495
child 9 b77b09f680e7
permissions -rw-r--r--
First drop.
Basic Sky Deutschland package frequency parssing.
StephaneLenclud@0
     1
namespace SatChanGen
StephaneLenclud@0
     2
{
StephaneLenclud@0
     3
    partial class MainForm
StephaneLenclud@0
     4
    {
StephaneLenclud@0
     5
        /// <summary>
StephaneLenclud@0
     6
        /// Required designer variable.
StephaneLenclud@0
     7
        /// </summary>
StephaneLenclud@0
     8
        private System.ComponentModel.IContainer components = null;
StephaneLenclud@0
     9
StephaneLenclud@0
    10
        /// <summary>
StephaneLenclud@0
    11
        /// Clean up any resources being used.
StephaneLenclud@0
    12
        /// </summary>
StephaneLenclud@0
    13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
StephaneLenclud@0
    14
        protected override void Dispose(bool disposing)
StephaneLenclud@0
    15
        {
StephaneLenclud@0
    16
            if (disposing && (components != null))
StephaneLenclud@0
    17
            {
StephaneLenclud@0
    18
                components.Dispose();
StephaneLenclud@0
    19
            }
StephaneLenclud@0
    20
            base.Dispose(disposing);
StephaneLenclud@0
    21
        }
StephaneLenclud@0
    22
StephaneLenclud@0
    23
        #region Windows Form Designer generated code
StephaneLenclud@0
    24
StephaneLenclud@0
    25
        /// <summary>
StephaneLenclud@0
    26
        /// Required method for Designer support - do not modify
StephaneLenclud@0
    27
        /// the contents of this method with the code editor.
StephaneLenclud@0
    28
        /// </summary>
StephaneLenclud@0
    29
        private void InitializeComponent()
StephaneLenclud@0
    30
        {
StephaneLenclud@0
    31
            this.buttonGenerate = new System.Windows.Forms.Button();
StephaneLenclud@0
    32
            this.SuspendLayout();
StephaneLenclud@0
    33
            // 
StephaneLenclud@0
    34
            // buttonGenerate
StephaneLenclud@0
    35
            // 
StephaneLenclud@0
    36
            this.buttonGenerate.Location = new System.Drawing.Point(192, 138);
StephaneLenclud@0
    37
            this.buttonGenerate.Name = "buttonGenerate";
StephaneLenclud@0
    38
            this.buttonGenerate.Size = new System.Drawing.Size(75, 23);
StephaneLenclud@0
    39
            this.buttonGenerate.TabIndex = 0;
StephaneLenclud@0
    40
            this.buttonGenerate.Text = "Generate";
StephaneLenclud@0
    41
            this.buttonGenerate.UseVisualStyleBackColor = true;
StephaneLenclud@0
    42
            this.buttonGenerate.Click += new System.EventHandler(this.buttonGenerate_Click);
StephaneLenclud@0
    43
            // 
StephaneLenclud@0
    44
            // MainForm
StephaneLenclud@0
    45
            // 
StephaneLenclud@0
    46
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
StephaneLenclud@0
    47
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
StephaneLenclud@0
    48
            this.ClientSize = new System.Drawing.Size(727, 521);
StephaneLenclud@0
    49
            this.Controls.Add(this.buttonGenerate);
StephaneLenclud@0
    50
            this.Name = "MainForm";
StephaneLenclud@0
    51
            this.Text = "Sattelite Channel Generator";
StephaneLenclud@0
    52
            this.ResumeLayout(false);
StephaneLenclud@0
    53
StephaneLenclud@0
    54
        }
StephaneLenclud@0
    55
StephaneLenclud@0
    56
        #endregion
StephaneLenclud@0
    57
StephaneLenclud@0
    58
        private System.Windows.Forms.Button buttonGenerate;
StephaneLenclud@0
    59
    }
StephaneLenclud@0
    60
}
StephaneLenclud@0
    61