MainForm.Designer.cs
author StephaneLenclud
Thu, 05 Mar 2015 10:12:37 +0100
changeset 71 c28dd93b94c5
parent 67 bda062e75e47
child 72 471b1d45c46a
permissions -rw-r--r--
Imrpoved HID device friendly name.
     1 using System;
     2 using System.Collections.Generic;
     3 using System.Text;
     4 
     5 namespace RemoteControlSample
     6 {
     7     public partial class MainForm
     8     {
     9         #region Windows Form Designer generated code
    10         /// <summary>
    11         /// Required method for Designer support - do not modify
    12         /// the contents of this method with the code editor.
    13         /// </summary>
    14         private void InitializeComponent()
    15         {
    16             this.labelButtonName = new System.Windows.Forms.Label();
    17             this.labelDeviceName = new System.Windows.Forms.Label();
    18             this.buttonClear = new System.Windows.Forms.Button();
    19             this.tabControl = new System.Windows.Forms.TabControl();
    20             this.tabPageMessages = new System.Windows.Forms.TabPage();
    21             this.listViewEvents = new System.Windows.Forms.ListView();
    22             this.columnHeaderUsages = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
    23             this.columnHeaderInputReport = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
    24             this.columnHeaderUsagePage = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
    25             this.columnHeaderUsageCollection = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
    26             this.columnHeaderRepeat = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
    27             this.columnHeaderTime = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
    28             this.tabPageDevices = new System.Windows.Forms.TabPage();
    29             this.buttonTreeViewExpandAll = new System.Windows.Forms.Button();
    30             this.buttonTreeViewCollapseAll = new System.Windows.Forms.Button();
    31             this.treeViewDevices = new System.Windows.Forms.TreeView();
    32             this.statusStrip = new System.Windows.Forms.StatusStrip();
    33             this.toolStripStatusLabelDevice = new System.Windows.Forms.ToolStripStatusLabel();
    34             this.tabPageTests = new System.Windows.Forms.TabPage();
    35             this.textBoxTests = new System.Windows.Forms.TextBox();
    36             this.tabControl.SuspendLayout();
    37             this.tabPageMessages.SuspendLayout();
    38             this.tabPageDevices.SuspendLayout();
    39             this.statusStrip.SuspendLayout();
    40             this.tabPageTests.SuspendLayout();
    41             this.SuspendLayout();
    42             // 
    43             // labelButtonName
    44             // 
    45             this.labelButtonName.AutoSize = true;
    46             this.labelButtonName.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
    47             this.labelButtonName.Location = new System.Drawing.Point(785, 53);
    48             this.labelButtonName.Name = "labelButtonName";
    49             this.labelButtonName.Size = new System.Drawing.Size(103, 20);
    50             this.labelButtonName.TabIndex = 0;
    51             this.labelButtonName.Text = "Button Name";
    52             // 
    53             // labelDeviceName
    54             // 
    55             this.labelDeviceName.AutoSize = true;
    56             this.labelDeviceName.Font = new System.Drawing.Font("Microsoft Sans Serif", 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
    57             this.labelDeviceName.Location = new System.Drawing.Point(785, 33);
    58             this.labelDeviceName.Name = "labelDeviceName";
    59             this.labelDeviceName.Size = new System.Drawing.Size(103, 20);
    60             this.labelDeviceName.TabIndex = 1;
    61             this.labelDeviceName.Text = "Device Name";
    62             // 
    63             // buttonClear
    64             // 
    65             this.buttonClear.Location = new System.Drawing.Point(813, 6);
    66             this.buttonClear.Name = "buttonClear";
    67             this.buttonClear.Size = new System.Drawing.Size(75, 23);
    68             this.buttonClear.TabIndex = 3;
    69             this.buttonClear.Text = "Clear";
    70             this.buttonClear.UseVisualStyleBackColor = true;
    71             this.buttonClear.Click += new System.EventHandler(this.buttonClear_Click);
    72             // 
    73             // tabControl
    74             // 
    75             this.tabControl.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
    76             | System.Windows.Forms.AnchorStyles.Left)));
    77             this.tabControl.Controls.Add(this.tabPageMessages);
    78             this.tabControl.Controls.Add(this.tabPageDevices);
    79             this.tabControl.Controls.Add(this.tabPageTests);
    80             this.tabControl.Location = new System.Drawing.Point(12, 12);
    81             this.tabControl.Name = "tabControl";
    82             this.tabControl.SelectedIndex = 0;
    83             this.tabControl.Size = new System.Drawing.Size(902, 532);
    84             this.tabControl.TabIndex = 4;
    85             // 
    86             // tabPageMessages
    87             // 
    88             this.tabPageMessages.Controls.Add(this.listViewEvents);
    89             this.tabPageMessages.Controls.Add(this.buttonClear);
    90             this.tabPageMessages.Controls.Add(this.labelDeviceName);
    91             this.tabPageMessages.Controls.Add(this.labelButtonName);
    92             this.tabPageMessages.Location = new System.Drawing.Point(4, 22);
    93             this.tabPageMessages.Name = "tabPageMessages";
    94             this.tabPageMessages.Padding = new System.Windows.Forms.Padding(3);
    95             this.tabPageMessages.Size = new System.Drawing.Size(894, 506);
    96             this.tabPageMessages.TabIndex = 0;
    97             this.tabPageMessages.Text = "Messages";
    98             this.tabPageMessages.UseVisualStyleBackColor = true;
    99             // 
   100             // listViewEvents
   101             // 
   102             this.listViewEvents.Alignment = System.Windows.Forms.ListViewAlignment.Left;
   103             this.listViewEvents.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   104             | System.Windows.Forms.AnchorStyles.Left)));
   105             this.listViewEvents.BorderStyle = System.Windows.Forms.BorderStyle.FixedSingle;
   106             this.listViewEvents.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
   107             this.columnHeaderUsages,
   108             this.columnHeaderInputReport,
   109             this.columnHeaderUsagePage,
   110             this.columnHeaderUsageCollection,
   111             this.columnHeaderRepeat,
   112             this.columnHeaderTime});
   113             this.listViewEvents.GridLines = true;
   114             this.listViewEvents.Location = new System.Drawing.Point(8, 6);
   115             this.listViewEvents.Name = "listViewEvents";
   116             this.listViewEvents.Size = new System.Drawing.Size(744, 492);
   117             this.listViewEvents.TabIndex = 3;
   118             this.listViewEvents.UseCompatibleStateImageBehavior = false;
   119             this.listViewEvents.View = System.Windows.Forms.View.Details;
   120             // 
   121             // columnHeaderUsages
   122             // 
   123             this.columnHeaderUsages.Text = "Usages";
   124             this.columnHeaderUsages.Width = 180;
   125             // 
   126             // columnHeaderInputReport
   127             // 
   128             this.columnHeaderInputReport.Text = "Input Report";
   129             this.columnHeaderInputReport.Width = 176;
   130             // 
   131             // columnHeaderUsagePage
   132             // 
   133             this.columnHeaderUsagePage.Text = "Usage Page";
   134             this.columnHeaderUsagePage.Width = 87;
   135             // 
   136             // columnHeaderUsageCollection
   137             // 
   138             this.columnHeaderUsageCollection.Text = "Usage Collection";
   139             this.columnHeaderUsageCollection.Width = 134;
   140             // 
   141             // columnHeaderRepeat
   142             // 
   143             this.columnHeaderRepeat.Text = "Repeat";
   144             this.columnHeaderRepeat.Width = 68;
   145             // 
   146             // columnHeaderTime
   147             // 
   148             this.columnHeaderTime.Text = "Time";
   149             this.columnHeaderTime.Width = 76;
   150             // 
   151             // tabPageDevices
   152             // 
   153             this.tabPageDevices.Controls.Add(this.buttonTreeViewExpandAll);
   154             this.tabPageDevices.Controls.Add(this.buttonTreeViewCollapseAll);
   155             this.tabPageDevices.Controls.Add(this.treeViewDevices);
   156             this.tabPageDevices.Location = new System.Drawing.Point(4, 22);
   157             this.tabPageDevices.Name = "tabPageDevices";
   158             this.tabPageDevices.Padding = new System.Windows.Forms.Padding(3);
   159             this.tabPageDevices.Size = new System.Drawing.Size(894, 506);
   160             this.tabPageDevices.TabIndex = 1;
   161             this.tabPageDevices.Text = "Devices";
   162             this.tabPageDevices.UseVisualStyleBackColor = true;
   163             // 
   164             // buttonTreeViewExpandAll
   165             // 
   166             this.buttonTreeViewExpandAll.Location = new System.Drawing.Point(813, 6);
   167             this.buttonTreeViewExpandAll.Name = "buttonTreeViewExpandAll";
   168             this.buttonTreeViewExpandAll.Size = new System.Drawing.Size(75, 23);
   169             this.buttonTreeViewExpandAll.TabIndex = 2;
   170             this.buttonTreeViewExpandAll.Text = "Expand All";
   171             this.buttonTreeViewExpandAll.UseVisualStyleBackColor = true;
   172             this.buttonTreeViewExpandAll.Click += new System.EventHandler(this.buttonTreeViewExpandAll_Click);
   173             // 
   174             // buttonTreeViewCollapseAll
   175             // 
   176             this.buttonTreeViewCollapseAll.Location = new System.Drawing.Point(813, 35);
   177             this.buttonTreeViewCollapseAll.Name = "buttonTreeViewCollapseAll";
   178             this.buttonTreeViewCollapseAll.Size = new System.Drawing.Size(75, 23);
   179             this.buttonTreeViewCollapseAll.TabIndex = 1;
   180             this.buttonTreeViewCollapseAll.Text = "Collapse All";
   181             this.buttonTreeViewCollapseAll.UseVisualStyleBackColor = true;
   182             this.buttonTreeViewCollapseAll.Click += new System.EventHandler(this.buttonTreeViewCollapseAll_Click);
   183             // 
   184             // treeViewDevices
   185             // 
   186             this.treeViewDevices.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
   187             | System.Windows.Forms.AnchorStyles.Left)));
   188             this.treeViewDevices.Location = new System.Drawing.Point(8, 6);
   189             this.treeViewDevices.Name = "treeViewDevices";
   190             this.treeViewDevices.Size = new System.Drawing.Size(713, 492);
   191             this.treeViewDevices.TabIndex = 0;
   192             // 
   193             // statusStrip
   194             // 
   195             this.statusStrip.Items.AddRange(new System.Windows.Forms.ToolStripItem[] {
   196             this.toolStripStatusLabelDevice});
   197             this.statusStrip.Location = new System.Drawing.Point(0, 547);
   198             this.statusStrip.Name = "statusStrip";
   199             this.statusStrip.Size = new System.Drawing.Size(935, 22);
   200             this.statusStrip.TabIndex = 5;
   201             this.statusStrip.Text = "statusStrip1";
   202             // 
   203             // toolStripStatusLabelDevice
   204             // 
   205             this.toolStripStatusLabelDevice.Name = "toolStripStatusLabelDevice";
   206             this.toolStripStatusLabelDevice.Size = new System.Drawing.Size(61, 17);
   207             this.toolStripStatusLabelDevice.Text = "No Device";
   208             // 
   209             // tabPageTests
   210             // 
   211             this.tabPageTests.Controls.Add(this.textBoxTests);
   212             this.tabPageTests.Location = new System.Drawing.Point(4, 22);
   213             this.tabPageTests.Name = "tabPageTests";
   214             this.tabPageTests.Size = new System.Drawing.Size(894, 506);
   215             this.tabPageTests.TabIndex = 2;
   216             this.tabPageTests.Text = "Tests";
   217             this.tabPageTests.UseVisualStyleBackColor = true;
   218             // 
   219             // textBoxTests
   220             // 
   221             this.textBoxTests.Location = new System.Drawing.Point(4, 4);
   222             this.textBoxTests.Multiline = true;
   223             this.textBoxTests.Name = "textBoxTests";
   224             this.textBoxTests.Size = new System.Drawing.Size(887, 499);
   225             this.textBoxTests.TabIndex = 0;
   226             // 
   227             // MainForm
   228             // 
   229             this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
   230             this.BackColor = System.Drawing.SystemColors.Control;
   231             this.ClientSize = new System.Drawing.Size(935, 569);
   232             this.Controls.Add(this.statusStrip);
   233             this.Controls.Add(this.tabControl);
   234             this.Name = "MainForm";
   235             this.Text = "Remote Control Sample";
   236             this.Load += new System.EventHandler(this.MainForm_Load);
   237             this.tabControl.ResumeLayout(false);
   238             this.tabPageMessages.ResumeLayout(false);
   239             this.tabPageMessages.PerformLayout();
   240             this.tabPageDevices.ResumeLayout(false);
   241             this.statusStrip.ResumeLayout(false);
   242             this.statusStrip.PerformLayout();
   243             this.tabPageTests.ResumeLayout(false);
   244             this.tabPageTests.PerformLayout();
   245             this.ResumeLayout(false);
   246             this.PerformLayout();
   247 
   248         }
   249         #endregion Windows Form Designer generated code
   250 
   251         private System.Windows.Forms.Button buttonTreeViewExpandAll;
   252         private System.Windows.Forms.Button buttonTreeViewCollapseAll;
   253         private System.Windows.Forms.StatusStrip statusStrip;
   254         private System.Windows.Forms.ToolStripStatusLabel toolStripStatusLabelDevice;
   255         private System.Windows.Forms.TabPage tabPageTests;
   256         private System.Windows.Forms.TextBox textBoxTests;
   257 
   258     }
   259 }