Server/MainForm.Designer.cs
author sl
Sat, 30 Aug 2014 19:24:47 +0200
changeset 47 c9e3d1389d06
parent 46 0c0ee86760ea
child 52 b22b0127afa4
permissions -rw-r--r--
Timer interval can now be set and is persisted.
     1 namespace SharpDisplayManager
     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             this.components = new System.ComponentModel.Container();
    32             this.panelDisplay = new System.Windows.Forms.Panel();
    33             this.tableLayoutPanel = new System.Windows.Forms.TableLayoutPanel();
    34             this.fontDialog = new System.Windows.Forms.FontDialog();
    35             this.timer = new System.Windows.Forms.Timer(this.components);
    36             this.statusStrip = new System.Windows.Forms.StatusStrip();
    37             this.toolStripStatusLabelConnect = new System.Windows.Forms.ToolStripStatusLabel();
    38             this.toolStripStatusLabelSpring = new System.Windows.Forms.ToolStripStatusLabel();
    39             this.toolStripStatusLabelPower = new System.Windows.Forms.ToolStripStatusLabel();
    40             this.toolStripStatusLabelFps = new System.Windows.Forms.ToolStripStatusLabel();
    41             this.tabPageClients = new System.Windows.Forms.TabPage();
    42             this.buttonCloseClients = new System.Windows.Forms.Button();
    43             this.buttonStartClient = new System.Windows.Forms.Button();
    44             this.treeViewClients = new System.Windows.Forms.TreeView();
    45             this.tabPageDisplay = new System.Windows.Forms.TabPage();
    46             this.maskedTextBoxTimerInterval = new System.Windows.Forms.MaskedTextBox();
    47             this.comboBoxDisplayType = new System.Windows.Forms.ComboBox();
    48             this.buttonSuspend = new System.Windows.Forms.Button();
    49             this.checkBoxConnectOnStartup = new System.Windows.Forms.CheckBox();
    50             this.trackBarBrightness = new System.Windows.Forms.TrackBar();
    51             this.buttonFill = new System.Windows.Forms.Button();
    52             this.buttonClear = new System.Windows.Forms.Button();
    53             this.buttonClose = new System.Windows.Forms.Button();
    54             this.buttonOpen = new System.Windows.Forms.Button();
    55             this.buttonCapture = new System.Windows.Forms.Button();
    56             this.labelWarning = new System.Windows.Forms.Label();
    57             this.checkBoxFixedPitchFontOnly = new System.Windows.Forms.CheckBox();
    58             this.checkBoxShowBorders = new System.Windows.Forms.CheckBox();
    59             this.buttonFont = new System.Windows.Forms.Button();
    60             this.tabControl = new System.Windows.Forms.TabControl();
    61             this.tabPageDesign = new System.Windows.Forms.TabPage();
    62             this.buttonAlignRight = new System.Windows.Forms.Button();
    63             this.buttonAlignCenter = new System.Windows.Forms.Button();
    64             this.buttonAlignLeft = new System.Windows.Forms.Button();
    65             this.buttonRemoveColumn = new System.Windows.Forms.Button();
    66             this.buttonAddColumn = new System.Windows.Forms.Button();
    67             this.checkBoxReverseScreen = new System.Windows.Forms.CheckBox();
    68             this.buttonRemoveRow = new System.Windows.Forms.Button();
    69             this.buttonAddRow = new System.Windows.Forms.Button();
    70             this.label1 = new System.Windows.Forms.Label();
    71             this.marqueeLabelTop = new SharpDisplayManager.MarqueeLabel();
    72             this.marqueeLabelBottom = new SharpDisplayManager.MarqueeLabel();
    73             this.panelDisplay.SuspendLayout();
    74             this.tableLayoutPanel.SuspendLayout();
    75             this.statusStrip.SuspendLayout();
    76             this.tabPageClients.SuspendLayout();
    77             this.tabPageDisplay.SuspendLayout();
    78             ((System.ComponentModel.ISupportInitialize)(this.trackBarBrightness)).BeginInit();
    79             this.tabControl.SuspendLayout();
    80             this.tabPageDesign.SuspendLayout();
    81             this.SuspendLayout();
    82             // 
    83             // panelDisplay
    84             // 
    85             this.panelDisplay.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
    86             this.panelDisplay.Controls.Add(this.tableLayoutPanel);
    87             this.panelDisplay.Location = new System.Drawing.Point(173, 40);
    88             this.panelDisplay.Margin = new System.Windows.Forms.Padding(0);
    89             this.panelDisplay.Name = "panelDisplay";
    90             this.panelDisplay.Size = new System.Drawing.Size(258, 66);
    91             this.panelDisplay.TabIndex = 12;
    92             // 
    93             // tableLayoutPanel
    94             // 
    95             this.tableLayoutPanel.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
    96             | System.Windows.Forms.AnchorStyles.Left) 
    97             | System.Windows.Forms.AnchorStyles.Right)));
    98             this.tableLayoutPanel.BackColor = System.Drawing.SystemColors.ControlLightLight;
    99             this.tableLayoutPanel.CellBorderStyle = System.Windows.Forms.TableLayoutPanelCellBorderStyle.Single;
   100             this.tableLayoutPanel.ColumnCount = 1;
   101             this.tableLayoutPanel.ColumnStyles.Add(new System.Windows.Forms.ColumnStyle(System.Windows.Forms.SizeType.Percent, 50F));
   102             this.tableLayoutPanel.Controls.Add(this.marqueeLabelTop, 0, 0);
   103             this.tableLayoutPanel.Controls.Add(this.marqueeLabelBottom, 0, 1);
   104             this.tableLayoutPanel.Location = new System.Drawing.Point(0, 0);
   105             this.tableLayoutPanel.Margin = new System.Windows.Forms.Padding(0);
   106             this.tableLayoutPanel.Name = "tableLayoutPanel";
   107             this.tableLayoutPanel.RowCount = 2;
   108             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
   109             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Percent, 50F));
   110             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   111             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   112             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   113             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   114             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   115             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   116             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   117             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   118             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   119             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   120             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   121             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   122             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   123             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   124             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   125             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   126             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   127             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   128             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   129             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   130             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   131             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   132             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   133             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   134             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   135             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   136             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   137             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   138             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   139             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   140             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   141             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   142             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   143             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   144             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   145             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   146             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   147             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   148             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   149             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   150             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   151             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   152             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   153             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   154             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   155             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   156             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   157             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   158             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   159             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   160             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   161             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   162             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   163             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   164             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   165             this.tableLayoutPanel.RowStyles.Add(new System.Windows.Forms.RowStyle(System.Windows.Forms.SizeType.Absolute, 20F));
   166             this.tableLayoutPanel.Size = new System.Drawing.Size(256, 64);
   167             this.tableLayoutPanel.TabIndex = 5;
   168             // 
   169             // timer
   170             // 
   171             this.timer.Enabled = true;
   172             this.timer.Interval = 50;
   173             this.timer.Tick += new System.EventHandler(this.timer_Tick);
   174             // 
   175             // statusStrip
   176             // 
   177             this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
   178             this.toolStripStatusLabelConnect,
   179             this.toolStripStatusLabelSpring,
   180             this.toolStripStatusLabelPower,
   181             this.toolStripStatusLabelFps});
   182             this.statusStrip.Location = new System.Drawing.Point(0, 420);
   183             this.statusStrip.Name = "statusStrip";
   184             this.statusStrip.RenderMode = System.Windows.Forms.ToolStripRenderMode.Professional;
   185             this.statusStrip.Size = new System.Drawing.Size(624, 22);
   186             this.statusStrip.TabIndex = 1;
   187             this.statusStrip.Text = "statusStrip";
   188             // 
   189             // toolStripStatusLabelConnect
   190             // 
   191             this.toolStripStatusLabelConnect.Name = "toolStripStatusLabelConnect";
   192             this.toolStripStatusLabelConnect.Size = new System.Drawing.Size(86, 17);
   193             this.toolStripStatusLabelConnect.Text = "Not connected";
   194             // 
   195             // toolStripStatusLabelSpring
   196             // 
   197             this.toolStripStatusLabelSpring.Name = "toolStripStatusLabelSpring";
   198             this.toolStripStatusLabelSpring.Size = new System.Drawing.Size(473, 17);
   199             this.toolStripStatusLabelSpring.Spring = true;
   200             // 
   201             // toolStripStatusLabelPower
   202             // 
   203             this.toolStripStatusLabelPower.Name = "toolStripStatusLabelPower";
   204             this.toolStripStatusLabelPower.Size = new System.Drawing.Size(24, 17);
   205             this.toolStripStatusLabelPower.Text = "NA";
   206             // 
   207             // toolStripStatusLabelFps
   208             // 
   209             this.toolStripStatusLabelFps.Name = "toolStripStatusLabelFps";
   210             this.toolStripStatusLabelFps.Size = new System.Drawing.Size(26, 17);
   211             this.toolStripStatusLabelFps.Text = "FPS";
   212             // 
   213             // tabPageClients
   214             // 
   215             this.tabPageClients.Controls.Add(this.buttonCloseClients);
   216             this.tabPageClients.Controls.Add(this.buttonStartClient);
   217             this.tabPageClients.Controls.Add(this.treeViewClients);
   218             this.tabPageClients.Location = new System.Drawing.Point(4, 22);
   219             this.tabPageClients.Name = "tabPageClients";
   220             this.tabPageClients.Padding = new System.Windows.Forms.Padding(3);
   221             this.tabPageClients.Size = new System.Drawing.Size(592, 242);
   222             this.tabPageClients.TabIndex = 2;
   223             this.tabPageClients.Text = "Clients";
   224             this.tabPageClients.UseVisualStyleBackColor = true;
   225             // 
   226             // buttonCloseClients
   227             // 
   228             this.buttonCloseClients.Location = new System.Drawing.Point(6, 35);
   229             this.buttonCloseClients.Name = "buttonCloseClients";
   230             this.buttonCloseClients.Size = new System.Drawing.Size(75, 23);
   231             this.buttonCloseClients.TabIndex = 20;
   232             this.buttonCloseClients.Text = "Close Clients";
   233             this.buttonCloseClients.UseVisualStyleBackColor = true;
   234             this.buttonCloseClients.Click += new System.EventHandler(this.buttonCloseClients_Click);
   235             // 
   236             // buttonStartClient
   237             // 
   238             this.buttonStartClient.Location = new System.Drawing.Point(6, 6);
   239             this.buttonStartClient.Name = "buttonStartClient";
   240             this.buttonStartClient.Size = new System.Drawing.Size(75, 23);
   241             this.buttonStartClient.TabIndex = 19;
   242             this.buttonStartClient.Text = "Start Client";
   243             this.buttonStartClient.UseVisualStyleBackColor = true;
   244             this.buttonStartClient.Click += new System.EventHandler(this.buttonStartClient_Click);
   245             // 
   246             // treeViewClients
   247             // 
   248             this.treeViewClients.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   249             | System.Windows.Forms.AnchorStyles.Left) 
   250             | System.Windows.Forms.AnchorStyles.Right)));
   251             this.treeViewClients.Location = new System.Drawing.Point(87, 6);
   252             this.treeViewClients.Name = "treeViewClients";
   253             this.treeViewClients.Size = new System.Drawing.Size(499, 233);
   254             this.treeViewClients.TabIndex = 0;
   255             this.treeViewClients.AfterSelect += new System.Windows.Forms.TreeViewEventHandler(this.treeViewClients_AfterSelect);
   256             // 
   257             // tabPageDisplay
   258             // 
   259             this.tabPageDisplay.Controls.Add(this.label1);
   260             this.tabPageDisplay.Controls.Add(this.maskedTextBoxTimerInterval);
   261             this.tabPageDisplay.Controls.Add(this.comboBoxDisplayType);
   262             this.tabPageDisplay.Controls.Add(this.buttonSuspend);
   263             this.tabPageDisplay.Controls.Add(this.checkBoxConnectOnStartup);
   264             this.tabPageDisplay.Controls.Add(this.trackBarBrightness);
   265             this.tabPageDisplay.Controls.Add(this.buttonFill);
   266             this.tabPageDisplay.Controls.Add(this.buttonClear);
   267             this.tabPageDisplay.Controls.Add(this.buttonClose);
   268             this.tabPageDisplay.Controls.Add(this.buttonOpen);
   269             this.tabPageDisplay.Controls.Add(this.buttonCapture);
   270             this.tabPageDisplay.Location = new System.Drawing.Point(4, 22);
   271             this.tabPageDisplay.Name = "tabPageDisplay";
   272             this.tabPageDisplay.Padding = new System.Windows.Forms.Padding(3);
   273             this.tabPageDisplay.Size = new System.Drawing.Size(592, 242);
   274             this.tabPageDisplay.TabIndex = 0;
   275             this.tabPageDisplay.Text = "Display";
   276             this.tabPageDisplay.UseVisualStyleBackColor = true;
   277             // 
   278             // maskedTextBoxTimerInterval
   279             // 
   280             this.maskedTextBoxTimerInterval.Location = new System.Drawing.Point(288, 42);
   281             this.maskedTextBoxTimerInterval.Mask = "000";
   282             this.maskedTextBoxTimerInterval.Name = "maskedTextBoxTimerInterval";
   283             this.maskedTextBoxTimerInterval.PromptChar = ' ';
   284             this.maskedTextBoxTimerInterval.Size = new System.Drawing.Size(24, 20);
   285             this.maskedTextBoxTimerInterval.TabIndex = 18;
   286             this.maskedTextBoxTimerInterval.TextChanged += new System.EventHandler(this.maskedTextBoxTimerInterval_TextChanged);
   287             // 
   288             // comboBoxDisplayType
   289             // 
   290             this.comboBoxDisplayType.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
   291             this.comboBoxDisplayType.FormattingEnabled = true;
   292             this.comboBoxDisplayType.Items.AddRange(new object[] {
   293             "Auto Detect",
   294             "Futaba GP1212A01A",
   295             "Futaba GP1212A02A"});
   296             this.comboBoxDisplayType.Location = new System.Drawing.Point(187, 9);
   297             this.comboBoxDisplayType.Name = "comboBoxDisplayType";
   298             this.comboBoxDisplayType.Size = new System.Drawing.Size(181, 21);
   299             this.comboBoxDisplayType.TabIndex = 17;
   300             this.comboBoxDisplayType.SelectedIndexChanged += new System.EventHandler(this.comboBoxDisplayType_SelectedIndexChanged);
   301             // 
   302             // buttonSuspend
   303             // 
   304             this.buttonSuspend.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   305             this.buttonSuspend.Location = new System.Drawing.Point(6, 184);
   306             this.buttonSuspend.Name = "buttonSuspend";
   307             this.buttonSuspend.Size = new System.Drawing.Size(75, 23);
   308             this.buttonSuspend.TabIndex = 16;
   309             this.buttonSuspend.Text = "Suspend";
   310             this.buttonSuspend.UseVisualStyleBackColor = true;
   311             this.buttonSuspend.Click += new System.EventHandler(this.buttonSuspend_Click);
   312             // 
   313             // checkBoxConnectOnStartup
   314             // 
   315             this.checkBoxConnectOnStartup.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   316             this.checkBoxConnectOnStartup.AutoSize = true;
   317             this.checkBoxConnectOnStartup.Location = new System.Drawing.Point(113, 217);
   318             this.checkBoxConnectOnStartup.Name = "checkBoxConnectOnStartup";
   319             this.checkBoxConnectOnStartup.Size = new System.Drawing.Size(119, 17);
   320             this.checkBoxConnectOnStartup.TabIndex = 13;
   321             this.checkBoxConnectOnStartup.Text = "Connect on stratup ";
   322             this.checkBoxConnectOnStartup.UseVisualStyleBackColor = true;
   323             this.checkBoxConnectOnStartup.CheckedChanged += new System.EventHandler(this.checkBoxConnectOnStartup_CheckedChanged);
   324             // 
   325             // trackBarBrightness
   326             // 
   327             this.trackBarBrightness.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   328             | System.Windows.Forms.AnchorStyles.Right)));
   329             this.trackBarBrightness.BackColor = System.Drawing.SystemColors.Window;
   330             this.trackBarBrightness.Location = new System.Drawing.Point(544, 9);
   331             this.trackBarBrightness.Name = "trackBarBrightness";
   332             this.trackBarBrightness.Orientation = System.Windows.Forms.Orientation.Vertical;
   333             this.trackBarBrightness.Size = new System.Drawing.Size(45, 225);
   334             this.trackBarBrightness.TabIndex = 10;
   335             this.trackBarBrightness.TickStyle = System.Windows.Forms.TickStyle.Both;
   336             this.trackBarBrightness.Scroll += new System.EventHandler(this.trackBarBrightness_Scroll);
   337             // 
   338             // buttonFill
   339             // 
   340             this.buttonFill.Location = new System.Drawing.Point(6, 93);
   341             this.buttonFill.Name = "buttonFill";
   342             this.buttonFill.Size = new System.Drawing.Size(75, 23);
   343             this.buttonFill.TabIndex = 9;
   344             this.buttonFill.Text = "Fill";
   345             this.buttonFill.UseVisualStyleBackColor = true;
   346             this.buttonFill.Click += new System.EventHandler(this.buttonFill_Click);
   347             // 
   348             // buttonClear
   349             // 
   350             this.buttonClear.Location = new System.Drawing.Point(6, 64);
   351             this.buttonClear.Name = "buttonClear";
   352             this.buttonClear.Size = new System.Drawing.Size(75, 23);
   353             this.buttonClear.TabIndex = 8;
   354             this.buttonClear.Text = "Clear";
   355             this.buttonClear.UseVisualStyleBackColor = true;
   356             this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
   357             // 
   358             // buttonClose
   359             // 
   360             this.buttonClose.Location = new System.Drawing.Point(6, 35);
   361             this.buttonClose.Name = "buttonClose";
   362             this.buttonClose.Size = new System.Drawing.Size(75, 23);
   363             this.buttonClose.TabIndex = 7;
   364             this.buttonClose.Text = "Close";
   365             this.buttonClose.UseVisualStyleBackColor = true;
   366             this.buttonClose.Click += new System.EventHandler(this.buttonClose_Click);
   367             // 
   368             // buttonOpen
   369             // 
   370             this.buttonOpen.Location = new System.Drawing.Point(6, 6);
   371             this.buttonOpen.Name = "buttonOpen";
   372             this.buttonOpen.Size = new System.Drawing.Size(75, 23);
   373             this.buttonOpen.TabIndex = 6;
   374             this.buttonOpen.Text = "Open";
   375             this.buttonOpen.UseVisualStyleBackColor = true;
   376             this.buttonOpen.Click += new System.EventHandler(this.buttonOpen_Click);
   377             // 
   378             // buttonCapture
   379             // 
   380             this.buttonCapture.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   381             this.buttonCapture.Location = new System.Drawing.Point(6, 213);
   382             this.buttonCapture.Name = "buttonCapture";
   383             this.buttonCapture.Size = new System.Drawing.Size(75, 23);
   384             this.buttonCapture.TabIndex = 5;
   385             this.buttonCapture.Text = "Capture";
   386             this.buttonCapture.UseVisualStyleBackColor = true;
   387             this.buttonCapture.Click += new System.EventHandler(this.buttonCapture_Click);
   388             // 
   389             // labelWarning
   390             // 
   391             this.labelWarning.AutoSize = true;
   392             this.labelWarning.Font = new System.Drawing.Font("Microsoft Sans Serif", 9.75F, System.Drawing.FontStyle.Bold, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
   393             this.labelWarning.ForeColor = System.Drawing.Color.Red;
   394             this.labelWarning.Location = new System.Drawing.Point(9, 9);
   395             this.labelWarning.Name = "labelWarning";
   396             this.labelWarning.Size = new System.Drawing.Size(80, 16);
   397             this.labelWarning.TabIndex = 18;
   398             this.labelWarning.Text = "WARNING";
   399             this.labelWarning.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
   400             this.labelWarning.Visible = false;
   401             // 
   402             // checkBoxFixedPitchFontOnly
   403             // 
   404             this.checkBoxFixedPitchFontOnly.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   405             this.checkBoxFixedPitchFontOnly.AutoSize = true;
   406             this.checkBoxFixedPitchFontOnly.Location = new System.Drawing.Point(87, 217);
   407             this.checkBoxFixedPitchFontOnly.Name = "checkBoxFixedPitchFontOnly";
   408             this.checkBoxFixedPitchFontOnly.Size = new System.Drawing.Size(120, 17);
   409             this.checkBoxFixedPitchFontOnly.TabIndex = 17;
   410             this.checkBoxFixedPitchFontOnly.Text = "Fixed pitch font only";
   411             this.checkBoxFixedPitchFontOnly.UseVisualStyleBackColor = true;
   412             // 
   413             // checkBoxShowBorders
   414             // 
   415             this.checkBoxShowBorders.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   416             this.checkBoxShowBorders.AutoSize = true;
   417             this.checkBoxShowBorders.Location = new System.Drawing.Point(485, 29);
   418             this.checkBoxShowBorders.Name = "checkBoxShowBorders";
   419             this.checkBoxShowBorders.Size = new System.Drawing.Size(91, 17);
   420             this.checkBoxShowBorders.TabIndex = 11;
   421             this.checkBoxShowBorders.Text = "Show borders";
   422             this.checkBoxShowBorders.UseVisualStyleBackColor = true;
   423             this.checkBoxShowBorders.CheckedChanged += new System.EventHandler(this.checkBoxShowBorders_CheckedChanged);
   424             // 
   425             // buttonFont
   426             // 
   427             this.buttonFont.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
   428             this.buttonFont.Location = new System.Drawing.Point(6, 213);
   429             this.buttonFont.Name = "buttonFont";
   430             this.buttonFont.Size = new System.Drawing.Size(75, 23);
   431             this.buttonFont.TabIndex = 0;
   432             this.buttonFont.Text = "Select Font";
   433             this.buttonFont.UseVisualStyleBackColor = true;
   434             this.buttonFont.Click += new System.EventHandler(this.buttonFont_Click);
   435             // 
   436             // tabControl
   437             // 
   438             this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   439             | System.Windows.Forms.AnchorStyles.Left) 
   440             | System.Windows.Forms.AnchorStyles.Right)));
   441             this.tabControl.Controls.Add(this.tabPageDisplay);
   442             this.tabControl.Controls.Add(this.tabPageClients);
   443             this.tabControl.Controls.Add(this.tabPageDesign);
   444             this.tabControl.Location = new System.Drawing.Point(12, 139);
   445             this.tabControl.Name = "tabControl";
   446             this.tabControl.SelectedIndex = 0;
   447             this.tabControl.Size = new System.Drawing.Size(600, 268);
   448             this.tabControl.TabIndex = 0;
   449             // 
   450             // tabPageDesign
   451             // 
   452             this.tabPageDesign.Controls.Add(this.buttonAlignRight);
   453             this.tabPageDesign.Controls.Add(this.buttonAlignCenter);
   454             this.tabPageDesign.Controls.Add(this.buttonAlignLeft);
   455             this.tabPageDesign.Controls.Add(this.buttonRemoveColumn);
   456             this.tabPageDesign.Controls.Add(this.checkBoxFixedPitchFontOnly);
   457             this.tabPageDesign.Controls.Add(this.buttonAddColumn);
   458             this.tabPageDesign.Controls.Add(this.buttonFont);
   459             this.tabPageDesign.Controls.Add(this.checkBoxReverseScreen);
   460             this.tabPageDesign.Controls.Add(this.buttonRemoveRow);
   461             this.tabPageDesign.Controls.Add(this.buttonAddRow);
   462             this.tabPageDesign.Controls.Add(this.checkBoxShowBorders);
   463             this.tabPageDesign.Location = new System.Drawing.Point(4, 22);
   464             this.tabPageDesign.Name = "tabPageDesign";
   465             this.tabPageDesign.Padding = new System.Windows.Forms.Padding(3);
   466             this.tabPageDesign.Size = new System.Drawing.Size(592, 242);
   467             this.tabPageDesign.TabIndex = 3;
   468             this.tabPageDesign.Text = "Design";
   469             this.tabPageDesign.UseVisualStyleBackColor = true;
   470             // 
   471             // buttonAlignRight
   472             // 
   473             this.buttonAlignRight.Location = new System.Drawing.Point(171, 105);
   474             this.buttonAlignRight.Name = "buttonAlignRight";
   475             this.buttonAlignRight.Size = new System.Drawing.Size(75, 23);
   476             this.buttonAlignRight.TabIndex = 20;
   477             this.buttonAlignRight.Text = "Align Right";
   478             this.buttonAlignRight.UseVisualStyleBackColor = true;
   479             this.buttonAlignRight.Click += new System.EventHandler(this.buttonAlignRight_Click);
   480             // 
   481             // buttonAlignCenter
   482             // 
   483             this.buttonAlignCenter.Location = new System.Drawing.Point(89, 106);
   484             this.buttonAlignCenter.Name = "buttonAlignCenter";
   485             this.buttonAlignCenter.Size = new System.Drawing.Size(75, 23);
   486             this.buttonAlignCenter.TabIndex = 19;
   487             this.buttonAlignCenter.Text = "Align Center";
   488             this.buttonAlignCenter.UseVisualStyleBackColor = true;
   489             this.buttonAlignCenter.Click += new System.EventHandler(this.buttonAlignCenter_Click);
   490             // 
   491             // buttonAlignLeft
   492             // 
   493             this.buttonAlignLeft.Location = new System.Drawing.Point(7, 106);
   494             this.buttonAlignLeft.Name = "buttonAlignLeft";
   495             this.buttonAlignLeft.Size = new System.Drawing.Size(75, 23);
   496             this.buttonAlignLeft.TabIndex = 18;
   497             this.buttonAlignLeft.Text = "Align Left";
   498             this.buttonAlignLeft.UseVisualStyleBackColor = true;
   499             this.buttonAlignLeft.Click += new System.EventHandler(this.buttonAlignLeft_Click);
   500             // 
   501             // buttonRemoveColumn
   502             // 
   503             this.buttonRemoveColumn.Location = new System.Drawing.Point(89, 37);
   504             this.buttonRemoveColumn.Name = "buttonRemoveColumn";
   505             this.buttonRemoveColumn.Size = new System.Drawing.Size(75, 23);
   506             this.buttonRemoveColumn.TabIndex = 3;
   507             this.buttonRemoveColumn.Text = "Remove col.";
   508             this.buttonRemoveColumn.UseVisualStyleBackColor = true;
   509             this.buttonRemoveColumn.Click += new System.EventHandler(this.buttonRemoveColumn_Click);
   510             // 
   511             // buttonAddColumn
   512             // 
   513             this.buttonAddColumn.Location = new System.Drawing.Point(89, 7);
   514             this.buttonAddColumn.Name = "buttonAddColumn";
   515             this.buttonAddColumn.Size = new System.Drawing.Size(75, 23);
   516             this.buttonAddColumn.TabIndex = 2;
   517             this.buttonAddColumn.Text = "Add column";
   518             this.buttonAddColumn.UseVisualStyleBackColor = true;
   519             this.buttonAddColumn.Click += new System.EventHandler(this.buttonAddColumn_Click);
   520             // 
   521             // checkBoxReverseScreen
   522             // 
   523             this.checkBoxReverseScreen.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   524             this.checkBoxReverseScreen.AutoSize = true;
   525             this.checkBoxReverseScreen.Location = new System.Drawing.Point(485, 6);
   526             this.checkBoxReverseScreen.Name = "checkBoxReverseScreen";
   527             this.checkBoxReverseScreen.Size = new System.Drawing.Size(101, 17);
   528             this.checkBoxReverseScreen.TabIndex = 14;
   529             this.checkBoxReverseScreen.Text = "Reverse screen";
   530             this.checkBoxReverseScreen.UseVisualStyleBackColor = true;
   531             this.checkBoxReverseScreen.CheckedChanged += new System.EventHandler(this.checkBoxReverseScreen_CheckedChanged);
   532             // 
   533             // buttonRemoveRow
   534             // 
   535             this.buttonRemoveRow.Location = new System.Drawing.Point(7, 37);
   536             this.buttonRemoveRow.Name = "buttonRemoveRow";
   537             this.buttonRemoveRow.Size = new System.Drawing.Size(75, 23);
   538             this.buttonRemoveRow.TabIndex = 1;
   539             this.buttonRemoveRow.Text = "Remove row";
   540             this.buttonRemoveRow.UseVisualStyleBackColor = true;
   541             this.buttonRemoveRow.Click += new System.EventHandler(this.buttonRemoveRow_Click);
   542             // 
   543             // buttonAddRow
   544             // 
   545             this.buttonAddRow.Location = new System.Drawing.Point(7, 7);
   546             this.buttonAddRow.Name = "buttonAddRow";
   547             this.buttonAddRow.Size = new System.Drawing.Size(75, 23);
   548             this.buttonAddRow.TabIndex = 0;
   549             this.buttonAddRow.Text = "Add row";
   550             this.buttonAddRow.UseVisualStyleBackColor = true;
   551             this.buttonAddRow.Click += new System.EventHandler(this.buttonAddRow_Click);
   552             // 
   553             // label1
   554             // 
   555             this.label1.AutoSize = true;
   556             this.label1.Location = new System.Drawing.Point(184, 45);
   557             this.label1.Name = "label1";
   558             this.label1.Size = new System.Drawing.Size(98, 13);
   559             this.label1.TabIndex = 19;
   560             this.label1.Text = "Timer interval (ms) :";
   561             // 
   562             // marqueeLabelTop
   563             // 
   564             this.marqueeLabelTop.AutoEllipsis = true;
   565             this.marqueeLabelTop.BackColor = System.Drawing.Color.Transparent;
   566             this.marqueeLabelTop.Dock = System.Windows.Forms.DockStyle.Fill;
   567             this.marqueeLabelTop.Location = new System.Drawing.Point(1, -9);
   568             this.marqueeLabelTop.Margin = new System.Windows.Forms.Padding(0);
   569             this.marqueeLabelTop.Name = "marqueeLabelTop";
   570             this.marqueeLabelTop.OwnTimer = false;
   571             this.marqueeLabelTop.PixelsPerSecond = 64;
   572             this.marqueeLabelTop.Separator = "|";
   573             this.marqueeLabelTop.Size = new System.Drawing.Size(254, 1);
   574             this.marqueeLabelTop.TabIndex = 2;
   575             this.marqueeLabelTop.Text = "ABCDEFGHIJKLMNOPQRST-0123456789";
   576             this.marqueeLabelTop.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
   577             this.marqueeLabelTop.UseCompatibleTextRendering = true;
   578             // 
   579             // marqueeLabelBottom
   580             // 
   581             this.marqueeLabelBottom.AutoEllipsis = true;
   582             this.marqueeLabelBottom.Dock = System.Windows.Forms.DockStyle.Fill;
   583             this.marqueeLabelBottom.Location = new System.Drawing.Point(1, 2);
   584             this.marqueeLabelBottom.Margin = new System.Windows.Forms.Padding(0);
   585             this.marqueeLabelBottom.Name = "marqueeLabelBottom";
   586             this.marqueeLabelBottom.OwnTimer = false;
   587             this.marqueeLabelBottom.PixelsPerSecond = 64;
   588             this.marqueeLabelBottom.Separator = "|";
   589             this.marqueeLabelBottom.Size = new System.Drawing.Size(254, 20);
   590             this.marqueeLabelBottom.TabIndex = 3;
   591             this.marqueeLabelBottom.Text = "abcdefghijklmnopqrst-0123456789";
   592             this.marqueeLabelBottom.TextAlign = System.Drawing.ContentAlignment.MiddleCenter;
   593             this.marqueeLabelBottom.UseCompatibleTextRendering = true;
   594             // 
   595             // MainForm
   596             // 
   597             this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
   598             this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
   599             this.ClientSize = new System.Drawing.Size(624, 442);
   600             this.Controls.Add(this.labelWarning);
   601             this.Controls.Add(this.statusStrip);
   602             this.Controls.Add(this.tabControl);
   603             this.Controls.Add(this.panelDisplay);
   604             this.MinimumSize = new System.Drawing.Size(640, 480);
   605             this.Name = "MainForm";
   606             this.Text = "Sharp Display Manager";
   607             this.FormClosing += new System.Windows.Forms.FormClosingEventHandler(this.MainForm_FormClosing);
   608             this.Load += new System.EventHandler(this.MainForm_Load);
   609             this.Resize += new System.EventHandler(this.MainForm_Resize);
   610             this.panelDisplay.ResumeLayout(false);
   611             this.tableLayoutPanel.ResumeLayout(false);
   612             this.statusStrip.ResumeLayout(false);
   613             this.statusStrip.PerformLayout();
   614             this.tabPageClients.ResumeLayout(false);
   615             this.tabPageDisplay.ResumeLayout(false);
   616             this.tabPageDisplay.PerformLayout();
   617             ((System.ComponentModel.ISupportInitialize)(this.trackBarBrightness)).EndInit();
   618             this.tabControl.ResumeLayout(false);
   619             this.tabPageDesign.ResumeLayout(false);
   620             this.tabPageDesign.PerformLayout();
   621             this.ResumeLayout(false);
   622             this.PerformLayout();
   623 
   624         }
   625 
   626         #endregion
   627 
   628         private System.Windows.Forms.FontDialog fontDialog;
   629         private System.Windows.Forms.Timer timer;
   630         private System.Windows.Forms.StatusStrip statusStrip;
   631         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelConnect;
   632         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelFps;
   633         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelSpring;
   634         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelPower;
   635         private System.Windows.Forms.Panel panelDisplay;
   636         private System.Windows.Forms.TableLayoutPanel tableLayoutPanel;
   637         private MarqueeLabel marqueeLabelTop;
   638         private MarqueeLabel marqueeLabelBottom;
   639         private System.Windows.Forms.TabPage tabPageClients;
   640         private System.Windows.Forms.TreeView treeViewClients;
   641         private System.Windows.Forms.TabPage tabPageDisplay;
   642         private System.Windows.Forms.CheckBox checkBoxFixedPitchFontOnly;
   643         private System.Windows.Forms.Button buttonSuspend;
   644         private System.Windows.Forms.CheckBox checkBoxConnectOnStartup;
   645         private System.Windows.Forms.CheckBox checkBoxShowBorders;
   646         private System.Windows.Forms.TrackBar trackBarBrightness;
   647         private System.Windows.Forms.Button buttonFill;
   648         private System.Windows.Forms.Button buttonClear;
   649         private System.Windows.Forms.Button buttonClose;
   650         private System.Windows.Forms.Button buttonOpen;
   651         private System.Windows.Forms.Button buttonCapture;
   652         private System.Windows.Forms.Button buttonFont;
   653         private System.Windows.Forms.TabControl tabControl;
   654         private System.Windows.Forms.Button buttonCloseClients;
   655         private System.Windows.Forms.Button buttonStartClient;
   656         private System.Windows.Forms.Label labelWarning;
   657         private System.Windows.Forms.TabPage tabPageDesign;
   658         private System.Windows.Forms.Button buttonRemoveColumn;
   659         private System.Windows.Forms.Button buttonAddColumn;
   660         private System.Windows.Forms.Button buttonRemoveRow;
   661         private System.Windows.Forms.Button buttonAddRow;
   662         private System.Windows.Forms.CheckBox checkBoxReverseScreen;
   663         private System.Windows.Forms.Button buttonAlignRight;
   664         private System.Windows.Forms.Button buttonAlignCenter;
   665         private System.Windows.Forms.Button buttonAlignLeft;
   666         private System.Windows.Forms.ComboBox comboBoxDisplayType;
   667         private System.Windows.Forms.MaskedTextBox maskedTextBoxTimerInterval;
   668         private System.Windows.Forms.Label label1;
   669     }
   670 }
   671