1.1 --- /dev/null Thu Jan 01 00:00:00 1970 +0000
1.2 +++ b/MainForm.Designer.cs Sat Jun 14 12:51:25 2014 +0200
1.3 @@ -0,0 +1,178 @@
1.4 +namespace SharpDisplayManager
1.5 +{
1.6 + partial class MainForm
1.7 + {
1.8 + /// <summary>
1.9 + /// Required designer variable.
1.10 + /// </summary>
1.11 + private System.ComponentModel.IContainer components = null;
1.12 +
1.13 + /// <summary>
1.14 + /// Clean up any resources being used.
1.15 + /// </summary>
1.16 + /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
1.17 + protected override void Dispose(bool disposing)
1.18 + {
1.19 + if (disposing && (components != null))
1.20 + {
1.21 + components.Dispose();
1.22 + }
1.23 + base.Dispose(disposing);
1.24 + }
1.25 +
1.26 + #region Windows Form Designer generated code
1.27 +
1.28 + /// <summary>
1.29 + /// Required method for Designer support - do not modify
1.30 + /// the contents of this method with the code editor.
1.31 + /// </summary>
1.32 + private void InitializeComponent()
1.33 + {
1.34 + this.tabControl = new System.Windows.Forms.TabControl();
1.35 + this.tabPageDisplay = new System.Windows.Forms.TabPage();
1.36 + this.buttonCapture = new System.Windows.Forms.Button();
1.37 + this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
1.38 + this.marqueeLabel1 = new SharpDisplayManager.MarqueeLabel();
1.39 + this.marqueeLabel2 = new SharpDisplayManager.MarqueeLabel();
1.40 + this.buttonFont = new System.Windows.Forms.Button();
1.41 + this.tabPageTests = new System.Windows.Forms.TabPage();
1.42 + this.fontDialog = new System.Windows.Forms.FontDialog();
1.43 + this.backgroundWorker1 = new System.ComponentModel.BackgroundWorker();
1.44 + this.tabControl.SuspendLayout();
1.45 + this.tabPageDisplay.SuspendLayout();
1.46 + this.tableLayoutPanel.SuspendLayout();
1.47 + this.SuspendLayout();
1.48 + //
1.49 + // tabControl
1.50 + //
1.51 + this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
1.52 + | System.Windows.Forms.AnchorStyles.Left)
1.53 + | System.Windows.Forms.AnchorStyles.Right)));
1.54 + this.tabControl.Controls.Add(this.tabPageDisplay);
1.55 + this.tabControl.Controls.Add(this.tabPageTests);
1.56 + this.tabControl.Location = new System.Drawing.Point(12, 12);
1.57 + this.tabControl.Name = "tabControl";
1.58 + this.tabControl.SelectedIndex = 0;
1.59 + this.tabControl.Size = new System.Drawing.Size(529, 362);
1.60 + this.tabControl.TabIndex = 0;
1.61 + //
1.62 + // tabPageDisplay
1.63 + //
1.64 + this.tabPageDisplay.Controls.Add(this.buttonCapture);
1.65 + this.tabPageDisplay.Controls.Add(this.tableLayoutPanel);
1.66 + this.tabPageDisplay.Controls.Add(this.buttonFont);
1.67 + this.tabPageDisplay.Location = new System.Drawing.Point(4, 22);
1.68 + this.tabPageDisplay.Name = "tabPageDisplay";
1.69 + this.tabPageDisplay.Padding = new System.Windows.Forms.Padding(3);
1.70 + this.tabPageDisplay.Size = new System.Drawing.Size(521, 336);
1.71 + this.tabPageDisplay.TabIndex = 0;
1.72 + this.tabPageDisplay.Text = "Display";
1.73 + this.tabPageDisplay.UseVisualStyleBackColor = true;
1.74 + //
1.75 + // buttonCapture
1.76 + //
1.77 + this.buttonCapture.Location = new System.Drawing.Point(6, 278);
1.78 + this.buttonCapture.Name = "buttonCapture";
1.79 + this.buttonCapture.Size = new System.Drawing.Size(75, 23);
1.80 + this.buttonCapture.TabIndex = 5;
1.81 + this.buttonCapture.Text = "Capture";
1.82 + this.buttonCapture.UseVisualStyleBackColor = true;
1.83 + this.buttonCapture.Click += new System.EventHandler(this.buttonCapture_Click);
1.84 + //
1.85 + // tableLayoutPanel
1.86 + //
1.87 + this.tableLayoutPanel.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
1.88 + this.tableLayoutPanel.ColumnCount = 1;
1.89 + this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
1.90 + this.tableLayoutPanel.Controls.Add(this.marqueeLabel1, 0, 0);
1.91 + this.tableLayoutPanel.Controls.Add(this.marqueeLabel2, 0, 1);
1.92 + this.tableLayoutPanel.Location = new System.Drawing.Point(215, 165);
1.93 + this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(0);
1.94 + this.tableLayoutPanel.Name = "tableLayoutPanel";
1.95 + this.tableLayoutPanel.RowCount = 2;
1.96 + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
1.97 + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
1.98 + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
1.99 + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
1.100 + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
1.101 + this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
1.102 + this.tableLayoutPanel.Size = new System.Drawing.Size(256, 64);
1.103 + this.tableLayoutPanel.TabIndex = 4;
1.104 + //
1.105 + // marqueeLabel1
1.106 + //
1.107 + this.marqueeLabel1.BackColor = System.Drawing.Color.Transparent;
1.108 + this.marqueeLabel1.Dock = System.Windows.Forms.DockStyle.Fill;
1.109 + this.marqueeLabel1.Location = new System.Drawing.Point(1, 1);
1.110 + this.marqueeLabel1.Margin = new System.Windows.Forms.Padding(0);
1.111 + this.marqueeLabel1.Name = "marqueeLabel1";
1.112 + this.marqueeLabel1.PixelsPerSecond = 128;
1.113 + this.marqueeLabel1.Size = new System.Drawing.Size(254, 30);
1.114 + this.marqueeLabel1.TabIndex = 2;
1.115 + this.marqueeLabel1.Text = "ABCDEFGHIJKLMNOPQRST-0123456789";
1.116 + this.marqueeLabel1.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1.117 + this.marqueeLabel1.UseCompatibleTextRendering = true;
1.118 + //
1.119 + // marqueeLabel2
1.120 + //
1.121 + this.marqueeLabel2.Dock = System.Windows.Forms.DockStyle.Fill;
1.122 + this.marqueeLabel2.Location = new System.Drawing.Point(1, 32);
1.123 + this.marqueeLabel2.Margin = new System.Windows.Forms.Padding(0);
1.124 + this.marqueeLabel2.Name = "marqueeLabel2";
1.125 + this.marqueeLabel2.PixelsPerSecond = 64;
1.126 + this.marqueeLabel2.Size = new System.Drawing.Size(254, 31);
1.127 + this.marqueeLabel2.TabIndex = 3;
1.128 + this.marqueeLabel2.Text = "abcdefghijklmnopqrst-0123456789";
1.129 + this.marqueeLabel2.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
1.130 + this.marqueeLabel2.UseCompatibleTextRendering = true;
1.131 + //
1.132 + // buttonFont
1.133 + //
1.134 + this.buttonFont.Location = new System.Drawing.Point(6, 307);
1.135 + this.buttonFont.Name = "buttonFont";
1.136 + this.buttonFont.Size = new System.Drawing.Size(75, 23);
1.137 + this.buttonFont.TabIndex = 0;
1.138 + this.buttonFont.Text = "Select Font";
1.139 + this.buttonFont.UseVisualStyleBackColor = true;
1.140 + this.buttonFont.Click += new System.EventHandler(this.buttonFont_Click);
1.141 + //
1.142 + // tabPageTests
1.143 + //
1.144 + this.tabPageTests.Location = new System.Drawing.Point(4, 22);
1.145 + this.tabPageTests.Name = "tabPageTests";
1.146 + this.tabPageTests.Padding = new System.Windows.Forms.Padding(3);
1.147 + this.tabPageTests.Size = new System.Drawing.Size(521, 336);
1.148 + this.tabPageTests.TabIndex = 1;
1.149 + this.tabPageTests.Text = "Test";
1.150 + this.tabPageTests.UseVisualStyleBackColor = true;
1.151 + //
1.152 + // MainForm
1.153 + //
1.154 + this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
1.155 + this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
1.156 + this.ClientSize = new System.Drawing.Size(553, 386);
1.157 + this.Controls.Add(this.tabControl);
1.158 + this.Name = "MainForm";
1.159 + this.Text = "Sharp Display Manager";
1.160 + this.tabControl.ResumeLayout(false);
1.161 + this.tabPageDisplay.ResumeLayout(false);
1.162 + this.tableLayoutPanel.ResumeLayout(false);
1.163 + this.ResumeLayout(false);
1.164 +
1.165 + }
1.166 +
1.167 + #endregion
1.168 +
1.169 + private System.Windows.Forms.TabControl tabControl;
1.170 + private System.Windows.Forms.TabPage tabPageDisplay;
1.171 + private System.Windows.Forms.TabPage tabPageTests;
1.172 + private System.Windows.Forms.Button buttonFont;
1.173 + private System.Windows.Forms.FontDialog fontDialog;
1.174 + private System.ComponentModel.BackgroundWorker backgroundWorker1;
1.175 + private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
1.176 + private MarqueeLabel marqueeLabel1;
1.177 + private MarqueeLabel marqueeLabel2;
1.178 + private System.Windows.Forms.Button buttonCapture;
1.179 + }
1.180 +}
1.181 +