MainForm.Designer.cs
author sl
Sat, 14 Jun 2014 12:51:25 +0200
changeset 0 f6eca6facd07
child 2 f516c3f656bf
permissions -rw-r--r--
First contrib.
sl@0
     1
namespace SharpDisplayManager
sl@0
     2
{
sl@0
     3
    partial class MainForm
sl@0
     4
    {
sl@0
     5
        /// <summary>
sl@0
     6
        /// Required designer variable.
sl@0
     7
        /// </summary>
sl@0
     8
        private System.ComponentModel.IContainer components = null;
sl@0
     9
sl@0
    10
        /// <summary>
sl@0
    11
        /// Clean up any resources being used.
sl@0
    12
        /// </summary>
sl@0
    13
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
sl@0
    14
        protected override void Dispose(bool disposing)
sl@0
    15
        {
sl@0
    16
            if (disposing && (components != null))
sl@0
    17
            {
sl@0
    18
                components.Dispose();
sl@0
    19
            }
sl@0
    20
            base.Dispose(disposing);
sl@0
    21
        }
sl@0
    22
sl@0
    23
        #region Windows Form Designer generated code
sl@0
    24
sl@0
    25
        /// <summary>
sl@0
    26
        /// Required method for Designer support - do not modify
sl@0
    27
        /// the contents of this method with the code editor.
sl@0
    28
        /// </summary>
sl@0
    29
        private void InitializeComponent()
sl@0
    30
        {
sl@0
    31
            this.tabControl = new System.Windows.Forms.TabControl();
sl@0
    32
            this.tabPageDisplay = new System.Windows.Forms.TabPage();
sl@0
    33
            this.buttonCapture = new System.Windows.Forms.Button();
sl@0
    34
            this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
sl@0
    35
            this.marqueeLabel1 = new SharpDisplayManager.MarqueeLabel();
sl@0
    36
            this.marqueeLabel2 = new SharpDisplayManager.MarqueeLabel();
sl@0
    37
            this.buttonFont = new System.Windows.Forms.Button();
sl@0
    38
            this.tabPageTests = new System.Windows.Forms.TabPage();
sl@0
    39
            this.fontDialog = new System.Windows.Forms.FontDialog();
sl@0
    40
            this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
sl@0
    41
            this.tabControl.SuspendLayout();
sl@0
    42
            this.tabPageDisplay.SuspendLayout();
sl@0
    43
            this.tableLayoutPanel.SuspendLayout();
sl@0
    44
            this.SuspendLayout();
sl@0
    45
            // 
sl@0
    46
            // tabControl
sl@0
    47
            // 
sl@0
    48
            this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
sl@0
    49
            | System.Windows.Forms.AnchorStyles.Left) 
sl@0
    50
            | System.Windows.Forms.AnchorStyles.Right)));
sl@0
    51
            this.tabControl.Controls.Add(this.tabPageDisplay);
sl@0
    52
            this.tabControl.Controls.Add(this.tabPageTests);
sl@0
    53
            this.tabControl.Location = new System.Drawing.Point(12, 12);
sl@0
    54
            this.tabControl.Name = "tabControl";
sl@0
    55
            this.tabControl.SelectedIndex = 0;
sl@0
    56
            this.tabControl.Size = new System.Drawing.Size(529, 362);
sl@0
    57
            this.tabControl.TabIndex = 0;
sl@0
    58
            // 
sl@0
    59
            // tabPageDisplay
sl@0
    60
            // 
sl@0
    61
            this.tabPageDisplay.Controls.Add(this.buttonCapture);
sl@0
    62
            this.tabPageDisplay.Controls.Add(this.tableLayoutPanel);
sl@0
    63
            this.tabPageDisplay.Controls.Add(this.buttonFont);
sl@0
    64
            this.tabPageDisplay.Location = new System.Drawing.Point(4, 22);
sl@0
    65
            this.tabPageDisplay.Name = "tabPageDisplay";
sl@0
    66
            this.tabPageDisplay.Padding = new System.Windows.Forms.Padding(3);
sl@0
    67
            this.tabPageDisplay.Size = new System.Drawing.Size(521, 336);
sl@0
    68
            this.tabPageDisplay.TabIndex = 0;
sl@0
    69
            this.tabPageDisplay.Text = "Display";
sl@0
    70
            this.tabPageDisplay.UseVisualStyleBackColor = true;
sl@0
    71
            // 
sl@0
    72
            // buttonCapture
sl@0
    73
            // 
sl@0
    74
            this.buttonCapture.Location = new System.Drawing.Point(6, 278);
sl@0
    75
            this.buttonCapture.Name = "buttonCapture";
sl@0
    76
            this.buttonCapture.Size = new System.Drawing.Size(75, 23);
sl@0
    77
            this.buttonCapture.TabIndex = 5;
sl@0
    78
            this.buttonCapture.Text = "Capture";
sl@0
    79
            this.buttonCapture.UseVisualStyleBackColor = true;
sl@0
    80
            this.buttonCapture.Click += new System.EventHandler(this.buttonCapture_Click);
sl@0
    81
            // 
sl@0
    82
            // tableLayoutPanel
sl@0
    83
            // 
sl@0
    84
            this.tableLayoutPanel.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
sl@0
    85
            this.tableLayoutPanel.ColumnCount = 1;
sl@0
    86
            this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
sl@0
    87
            this.tableLayoutPanel.Controls.Add(this.marqueeLabel1, 0, 0);
sl@0
    88
            this.tableLayoutPanel.Controls.Add(this.marqueeLabel2, 0, 1);
sl@0
    89
            this.tableLayoutPanel.Location = new System.Drawing.Point(215, 165);
sl@0
    90
            this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(0);
sl@0
    91
            this.tableLayoutPanel.Name = "tableLayoutPanel";
sl@0
    92
            this.tableLayoutPanel.RowCount = 2;
sl@0
    93
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
sl@0
    94
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
sl@0
    95
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
sl@0
    96
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
sl@0
    97
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
sl@0
    98
            this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
sl@0
    99
            this.tableLayoutPanel.Size = new System.Drawing.Size(256, 64);
sl@0
   100
            this.tableLayoutPanel.TabIndex = 4;
sl@0
   101
            // 
sl@0
   102
            // marqueeLabel1
sl@0
   103
            // 
sl@0
   104
            this.marqueeLabel1.BackColor = System.Drawing.Color.Transparent;
sl@0
   105
            this.marqueeLabel1.Dock = System.Windows.Forms.DockStyle.Fill;
sl@0
   106
            this.marqueeLabel1.Location = new System.Drawing.Point(1, 1);
sl@0
   107
            this.marqueeLabel1.Margin = new System.Windows.Forms.Padding(0);
sl@0
   108
            this.marqueeLabel1.Name = "marqueeLabel1";
sl@0
   109
            this.marqueeLabel1.PixelsPerSecond = 128;
sl@0
   110
            this.marqueeLabel1.Size = new System.Drawing.Size(254, 30);
sl@0
   111
            this.marqueeLabel1.TabIndex = 2;
sl@0
   112
            this.marqueeLabel1.Text = "ABCDEFGHIJKLMNOPQRST-0123456789";
sl@0
   113
            this.marqueeLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
sl@0
   114
            this.marqueeLabel1.UseCompatibleTextRendering = true;
sl@0
   115
            // 
sl@0
   116
            // marqueeLabel2
sl@0
   117
            // 
sl@0
   118
            this.marqueeLabel2.Dock = System.Windows.Forms.DockStyle.Fill;
sl@0
   119
            this.marqueeLabel2.Location = new System.Drawing.Point(1, 32);
sl@0
   120
            this.marqueeLabel2.Margin = new System.Windows.Forms.Padding(0);
sl@0
   121
            this.marqueeLabel2.Name = "marqueeLabel2";
sl@0
   122
            this.marqueeLabel2.PixelsPerSecond = 64;
sl@0
   123
            this.marqueeLabel2.Size = new System.Drawing.Size(254, 31);
sl@0
   124
            this.marqueeLabel2.TabIndex = 3;
sl@0
   125
            this.marqueeLabel2.Text = "abcdefghijklmnopqrst-0123456789";
sl@0
   126
            this.marqueeLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
sl@0
   127
            this.marqueeLabel2.UseCompatibleTextRendering = true;
sl@0
   128
            // 
sl@0
   129
            // buttonFont
sl@0
   130
            // 
sl@0
   131
            this.buttonFont.Location = new System.Drawing.Point(6, 307);
sl@0
   132
            this.buttonFont.Name = "buttonFont";
sl@0
   133
            this.buttonFont.Size = new System.Drawing.Size(75, 23);
sl@0
   134
            this.buttonFont.TabIndex = 0;
sl@0
   135
            this.buttonFont.Text = "Select Font";
sl@0
   136
            this.buttonFont.UseVisualStyleBackColor = true;
sl@0
   137
            this.buttonFont.Click += new System.EventHandler(this.buttonFont_Click);
sl@0
   138
            // 
sl@0
   139
            // tabPageTests
sl@0
   140
            // 
sl@0
   141
            this.tabPageTests.Location = new System.Drawing.Point(4, 22);
sl@0
   142
            this.tabPageTests.Name = "tabPageTests";
sl@0
   143
            this.tabPageTests.Padding = new System.Windows.Forms.Padding(3);
sl@0
   144
            this.tabPageTests.Size = new System.Drawing.Size(521, 336);
sl@0
   145
            this.tabPageTests.TabIndex = 1;
sl@0
   146
            this.tabPageTests.Text = "Test";
sl@0
   147
            this.tabPageTests.UseVisualStyleBackColor = true;
sl@0
   148
            // 
sl@0
   149
            // MainForm
sl@0
   150
            // 
sl@0
   151
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
sl@0
   152
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
sl@0
   153
            this.ClientSize = new System.Drawing.Size(553, 386);
sl@0
   154
            this.Controls.Add(this.tabControl);
sl@0
   155
            this.Name = "MainForm";
sl@0
   156
            this.Text = "Sharp Display Manager";
sl@0
   157
            this.tabControl.ResumeLayout(false);
sl@0
   158
            this.tabPageDisplay.ResumeLayout(false);
sl@0
   159
            this.tableLayoutPanel.ResumeLayout(false);
sl@0
   160
            this.ResumeLayout(false);
sl@0
   161
sl@0
   162
        }
sl@0
   163
sl@0
   164
        #endregion
sl@0
   165
sl@0
   166
        private System.Windows.Forms.TabControl tabControl;
sl@0
   167
        private System.Windows.Forms.TabPage tabPageDisplay;
sl@0
   168
        private System.Windows.Forms.TabPage tabPageTests;
sl@0
   169
        private System.Windows.Forms.Button buttonFont;
sl@0
   170
        private System.Windows.Forms.FontDialog fontDialog;
sl@0
   171
        private System.ComponentModel.BackgroundWorker backgroundWorker1;
sl@0
   172
        private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
sl@0
   173
        private MarqueeLabel marqueeLabel1;
sl@0
   174
        private MarqueeLabel marqueeLabel2;
sl@0
   175
        private System.Windows.Forms.Button buttonCapture;
sl@0
   176
    }
sl@0
   177
}
sl@0
   178