当前位置: 首页>>代码示例>>C#>>正文


C# Controls.MPComboBox类代码示例

本文整理汇总了C#中MediaPortal.UserInterface.Controls.MPComboBox的典型用法代码示例。如果您正苦于以下问题:C# MPComboBox类的具体用法?C# MPComboBox怎么用?C# MPComboBox使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。


MPComboBox类属于MediaPortal.UserInterface.Controls命名空间,在下文中一共展示了MPComboBox类的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。

示例1: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
   this.groupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.textBoxAudioOffset = new MediaPortal.UserInterface.Controls.MPTextBox();
   this.comboBoxSpeakerConfig = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.checkBoxMPEGOverSPDIF = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.label5 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.checkBoxSPDIF = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.checkBoxDynamicRange = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.label3 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.groupBox1.SuspendLayout();
   this.SuspendLayout();
   // 
   // groupBox1
   // 
   this.groupBox1.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
        | System.Windows.Forms.AnchorStyles.Right)));
   this.groupBox1.Controls.Add(this.textBoxAudioOffset);
   this.groupBox1.Controls.Add(this.comboBoxSpeakerConfig);
   this.groupBox1.Controls.Add(this.checkBoxMPEGOverSPDIF);
   this.groupBox1.Controls.Add(this.label5);
   this.groupBox1.Controls.Add(this.checkBoxSPDIF);
   this.groupBox1.Controls.Add(this.checkBoxDynamicRange);
   this.groupBox1.Controls.Add(this.label3);
   this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.groupBox1.Location = new System.Drawing.Point(6, 0);
   this.groupBox1.Name = "groupBox1";
   this.groupBox1.Size = new System.Drawing.Size(462, 168);
   this.groupBox1.TabIndex = 0;
   this.groupBox1.TabStop = false;
   this.groupBox1.Text = "Settings";
   // 
   // textBoxAudioOffset
   // 
   this.textBoxAudioOffset.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
        | System.Windows.Forms.AnchorStyles.Right)));
   this.textBoxAudioOffset.BorderColor = System.Drawing.Color.Empty;
   this.textBoxAudioOffset.Location = new System.Drawing.Point(168, 132);
   this.textBoxAudioOffset.Name = "textBoxAudioOffset";
   this.textBoxAudioOffset.Size = new System.Drawing.Size(278, 20);
   this.textBoxAudioOffset.TabIndex = 6;
   this.textBoxAudioOffset.Text = "0";
   // 
   // comboBoxSpeakerConfig
   // 
   this.comboBoxSpeakerConfig.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
        | System.Windows.Forms.AnchorStyles.Right)));
   this.comboBoxSpeakerConfig.BorderColor = System.Drawing.Color.Empty;
   this.comboBoxSpeakerConfig.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
   this.comboBoxSpeakerConfig.Items.AddRange(new object[]
                                               {
                                                 "Stereo",
                                                 "Dolby Stereo",
                                                 "4.0 (2 Front + 2 Rear)",
                                                 "4.1 (2 Front + 2 Rear + 1 Sub)",
                                                 "5.0 (3 Front + 2 Rear)",
                                                 "5.1 (3 Front + 2 Rear + 1 Sub)"
                                               });
   this.comboBoxSpeakerConfig.Location = new System.Drawing.Point(168, 20);
   this.comboBoxSpeakerConfig.Name = "comboBoxSpeakerConfig";
   this.comboBoxSpeakerConfig.Size = new System.Drawing.Size(278, 21);
   this.comboBoxSpeakerConfig.TabIndex = 1;
   // 
   // checkBoxMPEGOverSPDIF
   // 
   this.checkBoxMPEGOverSPDIF.AutoSize = true;
   this.checkBoxMPEGOverSPDIF.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.checkBoxMPEGOverSPDIF.Location = new System.Drawing.Point(16, 104);
   this.checkBoxMPEGOverSPDIF.Name = "checkBoxMPEGOverSPDIF";
   this.checkBoxMPEGOverSPDIF.Size = new System.Drawing.Size(148, 17);
   this.checkBoxMPEGOverSPDIF.TabIndex = 4;
   this.checkBoxMPEGOverSPDIF.Text = "MPEG Audio over S/PDIF";
   this.checkBoxMPEGOverSPDIF.UseVisualStyleBackColor = true;
   // 
   // label5
   // 
   this.label5.Location = new System.Drawing.Point(16, 136);
   this.label5.Name = "label5";
   this.label5.Size = new System.Drawing.Size(152, 16);
   this.label5.TabIndex = 5;
   this.label5.Text = "S/PDIF delay offset (msec.):";
   // 
   // checkBoxSPDIF
   // 
   this.checkBoxSPDIF.AutoSize = true;
   this.checkBoxSPDIF.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.checkBoxSPDIF.Location = new System.Drawing.Point(16, 56);
   this.checkBoxSPDIF.Name = "checkBoxSPDIF";
   this.checkBoxSPDIF.Size = new System.Drawing.Size(147, 17);
   this.checkBoxSPDIF.TabIndex = 2;
//.........这里部分代码省略.........
开发者ID:arangas,项目名称:MediaPortal-1,代码行数:101,代码来源:FiltersDScalerAudio.cs

示例2: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
   this.groupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.disableAnimCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.mpLabel2 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.pow2texCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.mpLabel1 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.subPicsAheadUpDown = new MediaPortal.UserInterface.Controls.MPNumericUpDown();
   this.textureComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.label3 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.label1 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.buttonClose = new MediaPortal.UserInterface.Controls.MPButton();
   this.buttonOK = new MediaPortal.UserInterface.Controls.MPButton();
   this.posYUpDown = new System.Windows.Forms.NumericUpDown();
   this.label2 = new System.Windows.Forms.Label();
   this.groupBox1.SuspendLayout();
   ((System.ComponentModel.ISupportInitialize)(this.subPicsAheadUpDown)).BeginInit();
   ((System.ComponentModel.ISupportInitialize)(this.posYUpDown)).BeginInit();
   this.SuspendLayout();
   // 
   // groupBox1
   // 
   this.groupBox1.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      ((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
         | System.Windows.Forms.AnchorStyles.Left)
        | System.Windows.Forms.AnchorStyles.Right)));
   this.groupBox1.Controls.Add(this.label2);
   this.groupBox1.Controls.Add(this.posYUpDown);
   this.groupBox1.Controls.Add(this.disableAnimCheckBox);
   this.groupBox1.Controls.Add(this.mpLabel2);
   this.groupBox1.Controls.Add(this.pow2texCheckBox);
   this.groupBox1.Controls.Add(this.mpLabel1);
   this.groupBox1.Controls.Add(this.subPicsAheadUpDown);
   this.groupBox1.Controls.Add(this.textureComboBox);
   this.groupBox1.Controls.Add(this.label3);
   this.groupBox1.Controls.Add(this.label1);
   this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.groupBox1.Location = new System.Drawing.Point(8, 8);
   this.groupBox1.Name = "groupBox1";
   this.groupBox1.Size = new System.Drawing.Size(450, 151);
   this.groupBox1.TabIndex = 0;
   this.groupBox1.TabStop = false;
   this.groupBox1.Text = "Options";
   // 
   // disableAnimCheckBox
   // 
   this.disableAnimCheckBox.AutoSize = true;
   this.disableAnimCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.disableAnimCheckBox.Location = new System.Drawing.Point(101, 96);
   this.disableAnimCheckBox.Name = "disableAnimCheckBox";
   this.disableAnimCheckBox.Size = new System.Drawing.Size(137, 17);
   this.disableAnimCheckBox.TabIndex = 16;
   this.disableAnimCheckBox.Text = "(Set for slow computers)";
   this.disableAnimCheckBox.UseVisualStyleBackColor = true;
   // 
   // mpLabel2
   // 
   this.mpLabel2.Location = new System.Drawing.Point(6, 98);
   this.mpLabel2.Name = "mpLabel2";
   this.mpLabel2.Size = new System.Drawing.Size(157, 22);
   this.mpLabel2.TabIndex = 15;
   this.mpLabel2.Text = "Disable Animation:";
   // 
   // pow2texCheckBox
   // 
   this.pow2texCheckBox.AutoSize = true;
   this.pow2texCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.pow2texCheckBox.Location = new System.Drawing.Point(293, 63);
   this.pow2texCheckBox.Name = "pow2texCheckBox";
   this.pow2texCheckBox.Size = new System.Drawing.Size(139, 17);
   this.pow2texCheckBox.TabIndex = 14;
   this.pow2texCheckBox.Text = "Round to the power of 2";
   this.pow2texCheckBox.UseVisualStyleBackColor = true;
   // 
   // mpLabel1
   // 
   this.mpLabel1.Location = new System.Drawing.Point(293, 27);
   this.mpLabel1.Name = "mpLabel1";
   this.mpLabel1.Size = new System.Drawing.Size(151, 37);
   this.mpLabel1.TabIndex = 13;
   this.mpLabel1.Text = "Set to 0 to disable buffering (not recommended)";
   // 
   // subPicsAheadUpDown
   // 
   this.subPicsAheadUpDown.Location = new System.Drawing.Point(232, 30);
   this.subPicsAheadUpDown.Name = "subPicsAheadUpDown";
   this.subPicsAheadUpDown.Size = new System.Drawing.Size(41, 20);
   this.subPicsAheadUpDown.TabIndex = 12;
   this.subPicsAheadUpDown.Value = new decimal(new int[]
                                                 {
                                                   3,
                                                   0,
                                                   0,
                                                   0
                                                 });
//.........这里部分代码省略.........
开发者ID:arangas,项目名称:MediaPortal-1,代码行数:101,代码来源:DlgMpcSubs.cs

示例3: CheckBoxValid

 /// <summary>
 /// Check Combobox count
 /// </summary>
 public override void CheckBoxValid(MPComboBox ComboBox)
 {
   if (ComboBox.Items.Count == 1)
   {
     ComboBox.Enabled = false;
   }
 }
开发者ID:doskabouter,项目名称:MediaPortal-1,代码行数:10,代码来源:MovieCodec.cs

示例4: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
   this.checkBoxDxVA = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.checkBoxHWMC = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.comboBoxDeInterlace = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.mpGroupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.mpLabel4 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.mpLabel1 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.mpGroupBox2 = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.mpLabel3 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.mpLabel2 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.comboBoxOutPutMode = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.comboBoxSpeakerConfig = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.mpGroupBox1.SuspendLayout();
   this.mpGroupBox2.SuspendLayout();
   this.SuspendLayout();
   // 
   // checkBoxDxVA
   // 
   this.checkBoxDxVA.AutoSize = true;
   this.checkBoxDxVA.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.checkBoxDxVA.Location = new System.Drawing.Point(62, 25);
   this.checkBoxDxVA.Name = "checkBoxDxVA";
   this.checkBoxDxVA.Size = new System.Drawing.Size(87, 17);
   this.checkBoxDxVA.TabIndex = 2;
   this.checkBoxDxVA.Text = "Enable DxVA";
   this.checkBoxDxVA.UseVisualStyleBackColor = true;
   // 
   // checkBoxHWMC
   // 
   this.checkBoxHWMC.AutoSize = true;
   this.checkBoxHWMC.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.checkBoxHWMC.Location = new System.Drawing.Point(62, 48);
   this.checkBoxHWMC.Name = "checkBoxHWMC";
   this.checkBoxHWMC.Size = new System.Drawing.Size(95, 17);
   this.checkBoxHWMC.TabIndex = 3;
   this.checkBoxHWMC.Text = "Enable HWMC";
   this.checkBoxHWMC.UseVisualStyleBackColor = true;
   // 
   // comboBoxDeInterlace
   // 
   this.comboBoxDeInterlace.BorderColor = System.Drawing.Color.Empty;
   this.comboBoxDeInterlace.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
   this.comboBoxDeInterlace.FormattingEnabled = true;
   this.comboBoxDeInterlace.Items.AddRange(new object[]
                                             {
                                               "Auto",
                                               "Bob",
                                               "Weave",
                                               "Progressive"
                                             });
   this.comboBoxDeInterlace.Location = new System.Drawing.Point(62, 102);
   this.comboBoxDeInterlace.Name = "comboBoxDeInterlace";
   this.comboBoxDeInterlace.Size = new System.Drawing.Size(125, 21);
   this.comboBoxDeInterlace.TabIndex = 4;
   // 
   // mpGroupBox1
   // 
   this.mpGroupBox1.Controls.Add(this.mpLabel4);
   this.mpGroupBox1.Controls.Add(this.mpLabel1);
   this.mpGroupBox1.Controls.Add(this.checkBoxHWMC);
   this.mpGroupBox1.Controls.Add(this.comboBoxDeInterlace);
   this.mpGroupBox1.Controls.Add(this.checkBoxDxVA);
   this.mpGroupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.mpGroupBox1.Location = new System.Drawing.Point(6, 0);
   this.mpGroupBox1.Name = "mpGroupBox1";
   this.mpGroupBox1.Size = new System.Drawing.Size(462, 143);
   this.mpGroupBox1.TabIndex = 5;
   this.mpGroupBox1.TabStop = false;
   this.mpGroupBox1.Text = "Video Decoder Settings";
   // 
   // mpLabel4
   // 
   this.mpLabel4.AutoSize = true;
   this.mpLabel4.Location = new System.Drawing.Point(182, 25);
   this.mpLabel4.MaximumSize = new System.Drawing.Size(240, 0);
   this.mpLabel4.Name = "mpLabel4";
   this.mpLabel4.RightToLeft = System.Windows.Forms.RightToLeft.No;
   this.mpLabel4.Size = new System.Drawing.Size(224, 39);
   this.mpLabel4.TabIndex = 6;
   this.mpLabel4.Text = "It is recommended to enable these options for better CPU utlization. If DxVA is e" +
                        "nabled, De-Interlacing is done using VMR9.";
   // 
   // mpLabel1
   // 
   this.mpLabel1.AutoSize = true;
   this.mpLabel1.Location = new System.Drawing.Point(7, 77);
   this.mpLabel1.Name = "mpLabel1";
   this.mpLabel1.Size = new System.Drawing.Size(106, 13);
   this.mpLabel1.TabIndex = 5;
   this.mpLabel1.Text = "De-Interlace Settings";
   // 
   // mpGroupBox2
   // 
   this.mpGroupBox2.Anchor =
     ((System.Windows.Forms.AnchorStyles)
//.........这里部分代码省略.........
开发者ID:arangas,项目名称:MediaPortal-1,代码行数:101,代码来源:FiltersWinDVD7Decoder.cs

示例5: UpdateCombo

 private void UpdateCombo(ref MPComboBox comboBox, Array list, string hilight)
 {
   comboBox.Items.Clear();
   foreach (var item in list)
   {
     comboBox.Items.Add(item.ToString());
   }
   comboBox.Text = hilight;
   comboBox.SelectedItem = hilight;
   comboBox.Enabled = true;
 }
开发者ID:MediaPortal,项目名称:MediaPortal-1,代码行数:11,代码来源:HidInputMappingForm.cs

示例6: InitializeComponent

    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      MediaPortal.UserInterface.Controls.MPTabPage tabPage3;
      MediaPortal.UserInterface.Controls.MPGroupBox mpGroupBox3;
      MediaPortal.UserInterface.Controls.MPLabel mpLabel2;
      System.Windows.Forms.Panel panel1;
      MediaPortal.UserInterface.Controls.MPTabPage mpTabPage2;
      MediaPortal.UserInterface.Controls.MPLabel labelPlayAll;
      this.mpSubEngineCommentLabel = new MediaPortal.UserInterface.Controls.MPLabel();
      this.subEnginesCombo = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.advancedButton = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpGroupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.mpLabelSubSelectMode = new MediaPortal.UserInterface.Controls.MPLabel();
      this.subtitlesSelectionComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.label2 = new System.Windows.Forms.Label();
      this.subPaths = new System.Windows.Forms.TextBox();
      this.mpLabel3 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.subPosRelativeCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.saveAlwaysRadioButton = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.saveAskRadioButton = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.saveNeverRadioButton = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.mpLabel6 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpLabel5 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.delayTextBox = new MediaPortal.UserInterface.Controls.MPNumericTextBox();
      this.mpLabel4 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpGroupBox2 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.subStyleOverrideCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.opaqueBoxRadioButton = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.borderOutlineRadioButton = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.borderWidthUpDown = new MediaPortal.UserInterface.Controls.MPNumericUpDown();
      this.shadowDepthUpDown = new MediaPortal.UserInterface.Controls.MPNumericUpDown();
      this.mpLabel1 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpLabel9 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.subtitlesButton = new MediaPortal.UserInterface.Controls.MPButton();
      this.subtitlesFontTextBox = new MediaPortal.UserInterface.Controls.MPTextBox();
      this.mpLabel10 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.folderBrowserDialog = new System.Windows.Forms.FolderBrowserDialog();
      this.fontDialog = new System.Windows.Forms.FontDialog();
      this.tabPage1 = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.mpGroupBoxVideoAudioDelay = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.delayVideoTextBox = new System.Windows.Forms.NumericUpDown();
      this.mpLabelAVDelayTime = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpLabelAVDelay = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpGroupBoxComSkip = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.comSkipCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.groupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.chbKeepFoldersTogether = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.playedPercentageTB = new System.Windows.Forms.NumericUpDown();
      this.percentPlayedLabel = new MediaPortal.UserInterface.Controls.MPLabel();
      this.comboBoxPlayAll = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.playedPercentageTrackBar = new System.Windows.Forms.TrackBar();
      this.checkBoxShowWatched = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.fileNameButton = new MediaPortal.UserInterface.Controls.MPButton();
      this.folderNameTextBox = new MediaPortal.UserInterface.Controls.MPTextBox();
      this.repeatPlaylistCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.folderNameLabel = new MediaPortal.UserInterface.Controls.MPLabel();
      this.tabControl1 = new MediaPortal.UserInterface.Controls.MPTabControl();
      this.mpTabPage1 = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.mpGroupBox4 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      streamLAVSelectionCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpLabelOptionLAV = new MediaPortal.UserInterface.Controls.MPLabel();
      audioDefaultCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpLabel7 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.defaultAudioLanguageComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.mpLabel8 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.defaultSubtitleLanguageComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
      tabPage3 = new MediaPortal.UserInterface.Controls.MPTabPage();
      mpGroupBox3 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      mpLabel2 = new MediaPortal.UserInterface.Controls.MPLabel();
      panel1 = new System.Windows.Forms.Panel();
      mpTabPage2 = new MediaPortal.UserInterface.Controls.MPTabPage();
      labelPlayAll = new MediaPortal.UserInterface.Controls.MPLabel();
      tabPage3.SuspendLayout();
      mpGroupBox3.SuspendLayout();
      this.mpGroupBox1.SuspendLayout();
      panel1.SuspendLayout();
      mpTabPage2.SuspendLayout();
      this.mpGroupBox2.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.borderWidthUpDown)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.shadowDepthUpDown)).BeginInit();
      this.tabPage1.SuspendLayout();
      this.mpGroupBoxVideoAudioDelay.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.delayVideoTextBox)).BeginInit();
      this.mpGroupBoxComSkip.SuspendLayout();
      this.groupBox1.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.playedPercentageTB)).BeginInit();
      ((System.ComponentModel.ISupportInitialize)(this.playedPercentageTrackBar)).BeginInit();
      this.tabControl1.SuspendLayout();
      this.mpTabPage1.SuspendLayout();
      this.mpGroupBox4.SuspendLayout();
      this.SuspendLayout();
      // 
      // tabPage3
      // 
      tabPage3.Controls.Add(mpGroupBox3);
      tabPage3.Controls.Add(this.mpGroupBox1);
//.........这里部分代码省略.........
开发者ID:MediaPortal,项目名称:MediaPortal-1,代码行数:101,代码来源:Movies.cs

示例7: InitializeComponent

 private void InitializeComponent()
 {
   this.groupBox1 = new MPGroupBox();
   this.groupBox5 = new GroupBox();
   this.cbUseClockOnShutdown = new CheckBox();
   this.mpEnableDisplayActionTime = new MPComboBox();
   this.cmbBlankIdleTime = new MPComboBox();
   this.mpEnableDisplayAction = new CheckBox();
   this.mpBlankDisplayWithVideo = new CheckBox();
   this.mpBlankDisplayWhenIdle = new CheckBox();
   this.groupEqualizerOptions = new GroupBox();
   this.groupEQstyle = new GroupBox();
   this.cbUseVUmeter2 = new RadioButton();
   this.cbVUindicators = new CheckBox();
   this.cbUseVUmeter = new RadioButton();
   this.cbStereoEQ = new RadioButton();
   this.cbNormalEQ = new RadioButton();
   this.cmbDelayEqTime = new MPComboBox();
   this.lblRestrictEQ = new MPLabel();
   this.cmbEQTitleDisplayTime = new MPComboBox();
   this.cmbEQTitleShowTime = new MPComboBox();
   this.mpEQTitleDisplay = new CheckBox();
   this.mpSmoothEQ = new CheckBox();
   this.mpEqDisplay = new CheckBox();
   this.mpRestrictEQ = new CheckBox();
   this.cmbEqRate = new MPComboBox();
   this.mpDelayEQ = new CheckBox();
   this.lblEQTitleDisplay = new MPLabel();
   this.btnOK = new MPButton();
   this.btnReset = new MPButton();
   this.groupBox1.SuspendLayout();
   this.groupBox5.SuspendLayout();
   this.groupEqualizerOptions.SuspendLayout();
   this.groupEQstyle.SuspendLayout();
   this.SuspendLayout();
   // 
   // groupBox1
   // 
   this.groupBox1.Anchor = ((AnchorStyles)((((AnchorStyles.Top | AnchorStyles.Bottom)
                                             | AnchorStyles.Left)
                                            | AnchorStyles.Right)));
   this.groupBox1.Controls.Add(this.groupBox5);
   this.groupBox1.Controls.Add(this.groupEqualizerOptions);
   this.groupBox1.FlatStyle = FlatStyle.Popup;
   this.groupBox1.Location = new Point(7, 6);
   this.groupBox1.Name = "groupBox1";
   this.groupBox1.Size = new Size(397, 368);
   this.groupBox1.TabIndex = 4;
   this.groupBox1.TabStop = false;
   this.groupBox1.Text = " IO-Warrior Graphical LCD Advanced Configuration ";
   // 
   // groupBox5
   // 
   this.groupBox5.Anchor = ((AnchorStyles)(((AnchorStyles.Top | AnchorStyles.Left)
                                            | AnchorStyles.Right)));
   this.groupBox5.Controls.Add(this.cbUseClockOnShutdown);
   this.groupBox5.Controls.Add(this.mpEnableDisplayActionTime);
   this.groupBox5.Controls.Add(this.cmbBlankIdleTime);
   this.groupBox5.Controls.Add(this.mpEnableDisplayAction);
   this.groupBox5.Controls.Add(this.mpBlankDisplayWithVideo);
   this.groupBox5.Controls.Add(this.mpBlankDisplayWhenIdle);
   this.groupBox5.Location = new Point(6, 19);
   this.groupBox5.Name = "groupBox5";
   this.groupBox5.Size = new Size(383, 103);
   this.groupBox5.TabIndex = 105;
   this.groupBox5.TabStop = false;
   this.groupBox5.Text = " Display Control Options ";
   // 
   // cbUseClockOnShutdown
   // 
   this.cbUseClockOnShutdown.AutoSize = true;
   this.cbUseClockOnShutdown.Location = new Point(8, 81);
   this.cbUseClockOnShutdown.Name = "cbUseClockOnShutdown";
   this.cbUseClockOnShutdown.Size = new Size(204, 17);
   this.cbUseClockOnShutdown.TabIndex = 100;
   this.cbUseClockOnShutdown.Text = "Use Clock on shutdown (If supported)";
   this.cbUseClockOnShutdown.UseVisualStyleBackColor = true;
   this.cbUseClockOnShutdown.Visible = false;
   // 
   // mpEnableDisplayActionTime
   // 
   this.mpEnableDisplayActionTime.BorderColor = Color.Empty;
   this.mpEnableDisplayActionTime.DropDownStyle = ComboBoxStyle.DropDownList;
   this.mpEnableDisplayActionTime.Items.AddRange(new object[]
                                                   {
                                                     "0",
                                                     "1",
                                                     "2",
                                                     "3",
                                                     "4",
                                                     "5",
                                                     "6",
                                                     "7",
                                                     "8",
                                                     "9",
                                                     "10",
                                                     "11",
                                                     "12",
                                                     "13",
                                                     "14",
//.........这里部分代码省略.........
开发者ID:arangas,项目名称:MediaPortal-1,代码行数:101,代码来源:IOWarrior_AdvancedSetupForm.cs

示例8: InitializeComponent

    private void InitializeComponent()
    {
            this.components = new System.ComponentModel.Container();
            this.btnAdvanced = new MediaPortal.UserInterface.Controls.MPButton();
            this.cmbPort = new MediaPortal.UserInterface.Controls.MPComboBox();
            this.label1 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.groupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
            this.txtIdleTimeout = new MediaPortal.UserInterface.Controls.MPTextBox();
            this.mpLabel7 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.btnTest = new MediaPortal.UserInterface.Controls.MPButton();
            this.groupShutdown = new System.Windows.Forms.GroupBox();
            this.label11 = new System.Windows.Forms.Label();
            this.label6 = new System.Windows.Forms.Label();
            this.mpShutdown2 = new System.Windows.Forms.TextBox();
            this.mpShutdown1 = new System.Windows.Forms.TextBox();
            this.cbContrast = new MediaPortal.UserInterface.Controls.MPCheckBox();
            this.cbDisplayOff = new MediaPortal.UserInterface.Controls.MPCheckBox();
            this.lblBrightness = new MediaPortal.UserInterface.Controls.MPLabel();
            this.tbBrightness = new System.Windows.Forms.TrackBar();
            this.btnTestDisplay = new MediaPortal.UserInterface.Controls.MPButton();
            this.lblContrast = new MediaPortal.UserInterface.Controls.MPLabel();
            this.tbContrast = new System.Windows.Forms.TrackBar();
            this.txtScrollDelay = new MediaPortal.UserInterface.Controls.MPTextBox();
            this.gbGraphMode = new MediaPortal.UserInterface.Controls.MPGroupBox();
            this.txtPixelsToScroll = new MediaPortal.UserInterface.Controls.MPTextBox();
            this.mpLabel5 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.ckForceGraphicText = new MediaPortal.UserInterface.Controls.MPCheckBox();
            this.txtFontSize = new MediaPortal.UserInterface.Controls.MPTextBox();
            this.mpLabel2 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.txtFont = new MediaPortal.UserInterface.Controls.MPComboBox();
            this.mpLabel1 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.label8 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.txtTimG = new MediaPortal.UserInterface.Controls.MPTextBox();
            this.txtRowsG = new MediaPortal.UserInterface.Controls.MPTextBox();
            this.txtColsG = new MediaPortal.UserInterface.Controls.MPTextBox();
            this.label9 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.label10 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.mpLabel3 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.gbTextMode = new MediaPortal.UserInterface.Controls.MPGroupBox();
            this.mpPrefixChar = new MediaPortal.UserInterface.Controls.MPTextBox();
            this.mpLabel6 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.txtCharsToScroll = new MediaPortal.UserInterface.Controls.MPTextBox();
            this.mpLabel4 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.label2 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.txtTim = new MediaPortal.UserInterface.Controls.MPTextBox();
            this.txtRows = new MediaPortal.UserInterface.Controls.MPTextBox();
            this.txtCols = new MediaPortal.UserInterface.Controls.MPTextBox();
            this.label4 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.label3 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.label7 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.cmbType = new MediaPortal.UserInterface.Controls.MPComboBox();
            this.cbLight = new MediaPortal.UserInterface.Controls.MPCheckBox();
            this.cbPropertyBrowser = new MediaPortal.UserInterface.Controls.MPCheckBox();
            this.btnOK = new MediaPortal.UserInterface.Controls.MPButton();
            this.cbExtensiveLogging = new MediaPortal.UserInterface.Controls.MPCheckBox();
            this.mpDisableGUISetup = new MediaPortal.UserInterface.Controls.MPCheckBox();
            this.btnCancel = new MediaPortal.UserInterface.Controls.MPButton();
            this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
            this.txtUpdateDelay = new MediaPortal.UserInterface.Controls.MPTextBox();
            this.mpLabel8 = new MediaPortal.UserInterface.Controls.MPLabel();
            this.groupBox1.SuspendLayout();
            this.groupShutdown.SuspendLayout();
            ((System.ComponentModel.ISupportInitialize)(this.tbBrightness)).BeginInit();
            ((System.ComponentModel.ISupportInitialize)(this.tbContrast)).BeginInit();
            this.gbGraphMode.SuspendLayout();
            this.gbTextMode.SuspendLayout();
            this.SuspendLayout();
            // 
            // btnAdvanced
            // 
            this.btnAdvanced.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
            this.btnAdvanced.Location = new System.Drawing.Point(271, 41);
            this.btnAdvanced.Name = "btnAdvanced";
            this.btnAdvanced.Size = new System.Drawing.Size(88, 23);
            this.btnAdvanced.TabIndex = 70;
            this.btnAdvanced.Text = "&Advanced";
            this.btnAdvanced.UseVisualStyleBackColor = true;
            this.btnAdvanced.Click += new System.EventHandler(this.btnAdvanced_Click);
            // 
            // cmbPort
            // 
            this.cmbPort.BorderColor = System.Drawing.Color.Empty;
            this.cmbPort.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
            this.cmbPort.Items.AddRange(new object[] {
            "LPT1",
            "LPT2",
            "LPT3",
            "LPT4",
            "USB",
            "COM1",
            "COM2",
            "COM3",
            "COM4",
            "COM5",
            "COM6",
            "COM7",
            "COM8",
            "NONE",
            "localhost"});
            this.cmbPort.Location = new System.Drawing.Point(40, 42);
//.........这里部分代码省略.........
开发者ID:splatterpop,项目名称:MediaPortal-1,代码行数:101,代码来源:SetupForm.cs

示例9: InitializeComponent

 /// <summary> 
 /// Required method for Designer support - do not modify 
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
   this.components = new System.ComponentModel.Container();
   this.tabControl1 = new MediaPortal.UserInterface.Controls.MPTabControl();
   this.tabPage1 = new MediaPortal.UserInterface.Controls.MPTabPage();
   this.editFormat1 = new Yeti.MMedia.EditFormat();
   this.tabPage2 = new MediaPortal.UserInterface.Controls.MPTabPage();
   this.checkBoxPrivate = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.checkBoxOriginal = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.checkBoxCRC = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.checkBoxCopyRight = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.checkBoxVBR = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.groupBoxVBR = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.label8 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.label7 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.comboBoxVBRMethod = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.label4 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.trackBarVBRQuality = new System.Windows.Forms.TrackBar();
   this.label6 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.comboBoxAvgBitrate = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.label5 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.comboBoxMaxBitRate = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.label3 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.comboBoxBitRate = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.textBoxMpegVersion = new MediaPortal.UserInterface.Controls.MPTextBox();
   this.label2 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.label1 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.toolTip1 = new System.Windows.Forms.ToolTip(this.components);
   this.tabControl1.SuspendLayout();
   this.tabPage1.SuspendLayout();
   this.tabPage2.SuspendLayout();
   this.groupBoxVBR.SuspendLayout();
   ((System.ComponentModel.ISupportInitialize)(this.trackBarVBRQuality)).BeginInit();
   this.SuspendLayout();
   // 
   // tabControl1
   // 
   this.tabControl1.Controls.Add(this.tabPage1);
   this.tabControl1.Controls.Add(this.tabPage2);
   this.tabControl1.Dock = System.Windows.Forms.DockStyle.Fill;
   this.tabControl1.Location = new System.Drawing.Point(0, 0);
   this.tabControl1.Name = "tabControl1";
   this.tabControl1.SelectedIndex = 0;
   this.tabControl1.Size = new System.Drawing.Size(336, 280);
   this.tabControl1.TabIndex = 0;
   // 
   // tabPage1
   // 
   this.tabPage1.Controls.Add(this.editFormat1);
   this.tabPage1.Location = new System.Drawing.Point(4, 22);
   this.tabPage1.Name = "tabPage1";
   this.tabPage1.Size = new System.Drawing.Size(328, 254);
   this.tabPage1.TabIndex = 0;
   this.tabPage1.Text = "Input format";
   // 
   // editFormat1
   // 
   this.editFormat1.Dock = System.Windows.Forms.DockStyle.Fill;
   this.editFormat1.Location = new System.Drawing.Point(0, 0);
   this.editFormat1.Name = "editFormat1";
   this.editFormat1.ReadOnly = true;
   this.editFormat1.Size = new System.Drawing.Size(328, 254);
   this.editFormat1.TabIndex = 0;
   // 
   // tabPage2
   // 
   this.tabPage2.Controls.Add(this.checkBoxPrivate);
   this.tabPage2.Controls.Add(this.checkBoxOriginal);
   this.tabPage2.Controls.Add(this.checkBoxCRC);
   this.tabPage2.Controls.Add(this.checkBoxCopyRight);
   this.tabPage2.Controls.Add(this.checkBoxVBR);
   this.tabPage2.Controls.Add(this.groupBoxVBR);
   this.tabPage2.Controls.Add(this.comboBoxBitRate);
   this.tabPage2.Controls.Add(this.textBoxMpegVersion);
   this.tabPage2.Controls.Add(this.label2);
   this.tabPage2.Controls.Add(this.label1);
   this.tabPage2.Location = new System.Drawing.Point(4, 22);
   this.tabPage2.Name = "tabPage2";
   this.tabPage2.Size = new System.Drawing.Size(328, 254);
   this.tabPage2.TabIndex = 1;
   this.tabPage2.Text = "MP3 config";
   // 
   // checkBoxPrivate
   // 
   this.checkBoxPrivate.Location = new System.Drawing.Point(248, 48);
   this.checkBoxPrivate.Name = "checkBoxPrivate";
   this.checkBoxPrivate.Size = new System.Drawing.Size(72, 24);
   this.checkBoxPrivate.TabIndex = 9;
   this.checkBoxPrivate.Text = "Private";
   this.toolTip1.SetToolTip(this.checkBoxPrivate, "Controls the private bit of MP3 stream");
   this.checkBoxPrivate.CheckedChanged += new System.EventHandler(this.Control_Changed);
   // 
   // checkBoxOriginal
   // 
   this.checkBoxOriginal.Location = new System.Drawing.Point(168, 48);
   this.checkBoxOriginal.Name = "checkBoxOriginal";
//.........这里部分代码省略.........
开发者ID:arangas,项目名称:MediaPortal-1,代码行数:101,代码来源:EditMp3Writer.cs

示例10: InitializeComponent

    /// <summary> 
    /// Required method for Designer support - do not modify 
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      this.groupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.btnMapping = new MediaPortal.UserInterface.Controls.MPButton();
      this.cbEnable = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.gbI = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.txtMonitor = new MediaPortal.UserInterface.Controls.MPLabel();
      this.gbButtonCombos = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.btnLearn = new MediaPortal.UserInterface.Controls.MPButton();
      this.label2 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.lblComboKill = new MediaPortal.UserInterface.Controls.MPLabel();
      this.txtComboClose = new MediaPortal.UserInterface.Controls.MPTextBox();
      this.txtComboKill = new MediaPortal.UserInterface.Controls.MPTextBox();
      this.gbSettings = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.btnRunControlPanel = new MediaPortal.UserInterface.Controls.MPButton();
      this.buttonDefault = new MediaPortal.UserInterface.Controls.MPButton();
      this.numDelay = new System.Windows.Forms.NumericUpDown();
      this.cbDevices = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.lblDelayMS = new MediaPortal.UserInterface.Controls.MPLabel();
      this.lblDInputDevice = new MediaPortal.UserInterface.Controls.MPLabel();
      this.groupBox1.SuspendLayout();
      this.gbI.SuspendLayout();
      this.gbButtonCombos.SuspendLayout();
      this.gbSettings.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.numDelay)).BeginInit();
      this.SuspendLayout();
      // 
      // groupBox1
      // 
      this.groupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.groupBox1.Controls.Add(this.btnMapping);
      this.groupBox1.Controls.Add(this.cbEnable);
      this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.groupBox1.Location = new System.Drawing.Point(6, 0);
      this.groupBox1.Name = "groupBox1";
      this.groupBox1.Size = new System.Drawing.Size(462, 56);
      this.groupBox1.TabIndex = 4;
      this.groupBox1.TabStop = false;
      // 
      // btnMapping
      // 
      this.btnMapping.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.btnMapping.Enabled = false;
      this.btnMapping.Location = new System.Drawing.Point(374, 20);
      this.btnMapping.Name = "btnMapping";
      this.btnMapping.Size = new System.Drawing.Size(72, 22);
      this.btnMapping.TabIndex = 1;
      this.btnMapping.Text = "Mapping";
      this.btnMapping.UseVisualStyleBackColor = true;
      this.btnMapping.Click += new System.EventHandler(this.btnMapping_Click);
      // 
      // cbEnable
      // 
      this.cbEnable.AutoSize = true;
      this.cbEnable.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.cbEnable.Location = new System.Drawing.Point(16, 24);
      this.cbEnable.Name = "cbEnable";
      this.cbEnable.Size = new System.Drawing.Size(274, 17);
      this.cbEnable.TabIndex = 0;
      this.cbEnable.Text = "Use Direct Input devices (Gamepads, Joysticks, etc.)";
      this.cbEnable.UseVisualStyleBackColor = true;
      this.cbEnable.CheckedChanged += new System.EventHandler(this.cbEnable_CheckedChanged);
      // 
      // gbI
      // 
      this.gbI.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                  | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.gbI.Controls.Add(this.txtMonitor);
      this.gbI.Enabled = false;
      this.gbI.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.gbI.Location = new System.Drawing.Point(6, 232);
      this.gbI.Name = "gbI";
      this.gbI.Size = new System.Drawing.Size(462, 124);
      this.gbI.TabIndex = 7;
      this.gbI.TabStop = false;
      this.gbI.Text = "Information";
      // 
      // txtMonitor
      // 
      this.txtMonitor.AutoSize = true;
      this.txtMonitor.Font = new System.Drawing.Font("Lucida Console", 9F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
      this.txtMonitor.Location = new System.Drawing.Point(16, 24);
      this.txtMonitor.Name = "txtMonitor";
      this.txtMonitor.Size = new System.Drawing.Size(180, 12);
      this.txtMonitor.TabIndex = 0;
      this.txtMonitor.Text = "No information available.";
      // 
      // gbButtonCombos
      // 
      this.gbButtonCombos.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.gbButtonCombos.Controls.Add(this.btnLearn);
      this.gbButtonCombos.Controls.Add(this.label2);
      this.gbButtonCombos.Controls.Add(this.lblComboKill);
//.........这里部分代码省略.........
开发者ID:arangas,项目名称:MediaPortal-1,代码行数:101,代码来源:RemoteDirectInput.cs

示例11: InitializeComponent

    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      this.components = new System.ComponentModel.Container();
      this.toolTip = new System.Windows.Forms.ToolTip(this.components);
      this.checkBoxHidEnabled = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.tabControlRemotes = new MediaPortal.UserInterface.Controls.MPTabControl();
      this.tabPageHid = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.pictureBox11 = new System.Windows.Forms.PictureBox();
      this.pictureBox12 = new System.Windows.Forms.PictureBox();
      this.pictureBox9 = new System.Windows.Forms.PictureBox();
      this.pictureBox6 = new System.Windows.Forms.PictureBox();
      this.pictureBox1 = new System.Windows.Forms.PictureBox();
      this.pictureBox4 = new System.Windows.Forms.PictureBox();
      this.pictureBox5 = new System.Windows.Forms.PictureBox();
      this.pictureBox2 = new System.Windows.Forms.PictureBox();
      this.groupBoxHidGeneral = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.numericRepeatSpeed = new System.Windows.Forms.NumericUpDown();
      this.numericRepeatDelay = new System.Windows.Forms.NumericUpDown();
      this.linkLabelDocumentation = new System.Windows.Forms.LinkLabel();
      this.checkBoxHidExtendedLogging = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.buttonHidMapping = new MediaPortal.UserInterface.Controls.MPButton();
      this.labelRepeatSpeed = new System.Windows.Forms.Label();
      this.labelRepeatDelay = new System.Windows.Forms.Label();
      this.tabPageAppCommand = new System.Windows.Forms.TabPage();
      this.labelMediaWarning = new System.Windows.Forms.Label();
      this.pictureBox8 = new System.Windows.Forms.PictureBox();
      this.mpGroupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.linkLabelMediaDocumentation = new System.Windows.Forms.LinkLabel();
      this.checkBoxAppCommandBackground = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpCheckBoxAppCommandVerbose = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpButtonAppCommandMapping = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpCheckBoxAppCommandEnabled = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.pictureBox7 = new System.Windows.Forms.PictureBox();
      this.tabPageCentarea = new System.Windows.Forms.TabPage();
      this.groupBoxCentareaOptions = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.checkBoxMapJoystick = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.checkBoxCentareaReMapMouseButton = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.checkBoxCentareaVerbose = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.checkBoxCentareaEnabled = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.buttonCentareaMapping = new MediaPortal.UserInterface.Controls.MPButton();
      this.pictureBoxCentarea = new System.Windows.Forms.PictureBox();
      this.tabPageFireDtv = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.groupBox_x64 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.linkLabel_x64 = new System.Windows.Forms.LinkLabel();
      this.groupBoxFireDTVRecieiverSettings = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.labelFireDTVModel = new MediaPortal.UserInterface.Controls.MPLabel();
      this.comboBoxFireDTVReceiver = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.groupBoxFireDTVReceiverGeneral = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.checkBoxFireDTVExtendedLogging = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.buttonFireDTVMapping = new MediaPortal.UserInterface.Controls.MPButton();
      this.checkBoxFireDTVEnabled = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.pictureBox3 = new System.Windows.Forms.PictureBox();
      this.tabPageX10 = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.groupBoxX10Status = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.labelX10DriverInfo = new System.Windows.Forms.Label();
      this.linkLabelDownloadX10 = new System.Windows.Forms.LinkLabel();
      this.labelX10Status = new MediaPortal.UserInterface.Controls.MPLabel();
      this.groupBoxX10General = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.buttonX10LearnMapping = new MediaPortal.UserInterface.Controls.MPButton();
      this.radioButtonX10Firefly = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.radioButtonX10Other = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.radioButtonX10Ati = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.radioButtonX10Medion = new MediaPortal.UserInterface.Controls.MPRadioButton();
      this.checkBoxX10Enabled = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.groupBoxX10Settings = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.LabelChannelNumber = new MediaPortal.UserInterface.Controls.MPLabel();
      this.TextBoxChannelNumber = new MediaPortal.UserInterface.Controls.MPTextBox();
      this.checkBoxX10ChannelControl = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.checkBoxX10ExtendedLogging = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.buttonX10Defaults = new MediaPortal.UserInterface.Controls.MPButton();
      this.tabPageHcw = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.groupBoxHcwRepeatDelay = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.hScrollBarHcwRepeatSpeed = new System.Windows.Forms.HScrollBar();
      this.labelHcwFast = new MediaPortal.UserInterface.Controls.MPLabel();
      this.labelHcwRepeatSpeed = new MediaPortal.UserInterface.Controls.MPLabel();
      this.labelHcwSlow = new MediaPortal.UserInterface.Controls.MPLabel();
      this.hScrollBarHcwRepeatFilter = new System.Windows.Forms.HScrollBar();
      this.labelHcwMax = new MediaPortal.UserInterface.Controls.MPLabel();
      this.labelHcwRepeatFilter = new MediaPortal.UserInterface.Controls.MPLabel();
      this.labelHcwMin = new MediaPortal.UserInterface.Controls.MPLabel();
      this.hScrollBarHcwButtonRelease = new System.Windows.Forms.HScrollBar();
      this.labelHcw1000msec = new MediaPortal.UserInterface.Controls.MPLabel();
      this.labelHcwButtonRelease = new MediaPortal.UserInterface.Controls.MPLabel();
      this.labelHcw20msec = new MediaPortal.UserInterface.Controls.MPLabel();
      this.groupBoxHcwGeneral = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.HCWLearn = new System.Windows.Forms.Button();
      this.buttonHcwDefaults = new MediaPortal.UserInterface.Controls.MPButton();
      this.checkBoxHcwEnabled = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.groupBoxHcwStatus = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.linkLabelHcwDownload = new System.Windows.Forms.LinkLabel();
      this.labelHcwDriverStatus = new MediaPortal.UserInterface.Controls.MPLabel();
      this.groupBoxHcwSettings = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.checkBoxHcwFilterDoubleKlicks = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.checkBoxHcwAllowExternal = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.checkBoxHcwKeepControl = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.checkBoxHcwExtendedLogging = new MediaPortal.UserInterface.Controls.MPCheckBox();
//.........这里部分代码省略.........
开发者ID:arangas,项目名称:MediaPortal-1,代码行数:101,代码来源:Remote.cs

示例12: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
   this.groupBoxAc3DecoderSettings = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.radioButtonAc3Spdif = new MediaPortal.UserInterface.Controls.MPRadioButton();
   this.radioButtonAc3Speakers = new MediaPortal.UserInterface.Controls.MPRadioButton();
   this.checkBoxAc3Lfe = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.comboBoxAc3SpeakerConfig = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.checkBoxAc3DynamicRange = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.groupBoxFormat = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.labelBoostValue = new MediaPortal.UserInterface.Controls.MPLabel();
   this.labelBoost = new MediaPortal.UserInterface.Controls.MPLabel();
   this.radioButtonPcm16Bit = new MediaPortal.UserInterface.Controls.MPRadioButton();
   this.radioButtonPcm24Bit = new MediaPortal.UserInterface.Controls.MPRadioButton();
   this.radioButtonPcm32Bit = new MediaPortal.UserInterface.Controls.MPRadioButton();
   this.radioButtonIeee = new MediaPortal.UserInterface.Controls.MPRadioButton();
   this.checkBoxNormalize = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.trackBarBoost = new System.Windows.Forms.TrackBar();
   this.groupBoxDtsDecoderSettings = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.radioButtonDtsSpdif = new MediaPortal.UserInterface.Controls.MPRadioButton();
   this.radioButtonDtsSpeakers = new MediaPortal.UserInterface.Controls.MPRadioButton();
   this.checkBoxDtsLfe = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.comboBoxDtsSpeakerConfig = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.checkBoxDtsDynamicRange = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.groupBoxAacDecoderSettings = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.checkBoxAacDynamic = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.checkBoxAacDownmix = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.label2 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.groupBoxAc3DecoderSettings.SuspendLayout();
   this.groupBoxFormat.SuspendLayout();
   ((System.ComponentModel.ISupportInitialize)(this.trackBarBoost)).BeginInit();
   this.groupBoxDtsDecoderSettings.SuspendLayout();
   this.groupBoxAacDecoderSettings.SuspendLayout();
   this.SuspendLayout();
   // 
   // groupBoxAc3DecoderSettings
   // 
   this.groupBoxAc3DecoderSettings.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
        | System.Windows.Forms.AnchorStyles.Right)));
   this.groupBoxAc3DecoderSettings.Controls.Add(this.radioButtonAc3Spdif);
   this.groupBoxAc3DecoderSettings.Controls.Add(this.radioButtonAc3Speakers);
   this.groupBoxAc3DecoderSettings.Controls.Add(this.checkBoxAc3Lfe);
   this.groupBoxAc3DecoderSettings.Controls.Add(this.comboBoxAc3SpeakerConfig);
   this.groupBoxAc3DecoderSettings.Controls.Add(this.checkBoxAc3DynamicRange);
   this.groupBoxAc3DecoderSettings.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.groupBoxAc3DecoderSettings.Font = new System.Drawing.Font("Microsoft Sans Serif", 8.25F,
                                                                  System.Drawing.FontStyle.Regular,
                                                                  System.Drawing.GraphicsUnit.Point, ((byte)(0)));
   this.groupBoxAc3DecoderSettings.Location = new System.Drawing.Point(6, 0);
   this.groupBoxAc3DecoderSettings.Name = "groupBoxAc3DecoderSettings";
   this.groupBoxAc3DecoderSettings.Size = new System.Drawing.Size(462, 104);
   this.groupBoxAc3DecoderSettings.TabIndex = 0;
   this.groupBoxAc3DecoderSettings.TabStop = false;
   this.groupBoxAc3DecoderSettings.Text = "AC3 Decoder Settings";
   // 
   // radioButtonAc3Spdif
   // 
   this.radioButtonAc3Spdif.AutoSize = true;
   this.radioButtonAc3Spdif.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.radioButtonAc3Spdif.Location = new System.Drawing.Point(16, 48);
   this.radioButtonAc3Spdif.Name = "radioButtonAc3Spdif";
   this.radioButtonAc3Spdif.Size = new System.Drawing.Size(60, 17);
   this.radioButtonAc3Spdif.TabIndex = 3;
   this.radioButtonAc3Spdif.Text = "S/PDIF";
   this.radioButtonAc3Spdif.UseVisualStyleBackColor = true;
   this.radioButtonAc3Spdif.CheckedChanged += new System.EventHandler(this.radioButtonAC3SPDIF_CheckedChanged);
   // 
   // radioButtonAc3Speakers
   // 
   this.radioButtonAc3Speakers.AutoSize = true;
   this.radioButtonAc3Speakers.Checked = true;
   this.radioButtonAc3Speakers.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.radioButtonAc3Speakers.Location = new System.Drawing.Point(16, 24);
   this.radioButtonAc3Speakers.Name = "radioButtonAc3Speakers";
   this.radioButtonAc3Speakers.Size = new System.Drawing.Size(123, 17);
   this.radioButtonAc3Speakers.TabIndex = 0;
   this.radioButtonAc3Speakers.TabStop = true;
   this.radioButtonAc3Speakers.Text = "Decode to speakers:";
   this.radioButtonAc3Speakers.UseVisualStyleBackColor = true;
   // 
   // checkBoxAc3Lfe
   // 
   this.checkBoxAc3Lfe.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   this.checkBoxAc3Lfe.AutoSize = true;
   this.checkBoxAc3Lfe.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.checkBoxAc3Lfe.Location = new System.Drawing.Point(403, 24);
   this.checkBoxAc3Lfe.Name = "checkBoxAc3Lfe";
   this.checkBoxAc3Lfe.Size = new System.Drawing.Size(43, 17);
   this.checkBoxAc3Lfe.TabIndex = 2;
   this.checkBoxAc3Lfe.Text = "LFE";
   this.checkBoxAc3Lfe.UseVisualStyleBackColor = true;
   // 
   // comboBoxAc3SpeakerConfig
//.........这里部分代码省略.........
开发者ID:arangas,项目名称:MediaPortal-1,代码行数:101,代码来源:FiltersMpeg2DecAudio.cs

示例13: InitializeComponent

    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      this.mpGroupBox3 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.checkBoxUIUseSW = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.checkBoxUIUseHAM = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.comboBoxH264DeInterlace = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.mpLabel6 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpLabel5 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.checkBoxUIUseH264HVA = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpGroupBox3.SuspendLayout();
      this.SuspendLayout();
      // 
      // mpGroupBox3
      // 
      this.mpGroupBox3.Controls.Add(this.checkBoxUIUseSW);
      this.mpGroupBox3.Controls.Add(this.checkBoxUIUseHAM);
      this.mpGroupBox3.Controls.Add(this.comboBoxH264DeInterlace);
      this.mpGroupBox3.Controls.Add(this.mpLabel6);
      this.mpGroupBox3.Controls.Add(this.mpLabel5);
      this.mpGroupBox3.Controls.Add(this.checkBoxUIUseH264HVA);
      this.mpGroupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox3.Location = new System.Drawing.Point(6, 0);
      this.mpGroupBox3.Name = "mpGroupBox3";
      this.mpGroupBox3.Size = new System.Drawing.Size(462, 221);
      this.mpGroupBox3.TabIndex = 4;
      this.mpGroupBox3.TabStop = false;
      this.mpGroupBox3.Text = "H.264/VC-1/MPEG Video Decoder Settings (PDVD10+)";
      // 
      // checkBoxUIUseSW
      // 
      this.checkBoxUIUseSW.AutoSize = true;
      this.checkBoxUIUseSW.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.checkBoxUIUseSW.Location = new System.Drawing.Point(22, 80);
      this.checkBoxUIUseSW.Name = "checkBoxUIUseSW";
      this.checkBoxUIUseSW.Size = new System.Drawing.Size(64, 17);
      this.checkBoxUIUseSW.TabIndex = 7;
      this.checkBoxUIUseSW.Text = "Use SW";
      this.checkBoxUIUseSW.UseVisualStyleBackColor = true;
      this.checkBoxUIUseSW.CheckedChanged += new System.EventHandler(this.checkBoxUIUseSW_CheckedChanged);
      // 
      // checkBoxUIUseHAM
      // 
      this.checkBoxUIUseHAM.AutoSize = true;
      this.checkBoxUIUseHAM.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.checkBoxUIUseHAM.Location = new System.Drawing.Point(22, 56);
      this.checkBoxUIUseHAM.Name = "checkBoxUIUseHAM";
      this.checkBoxUIUseHAM.Size = new System.Drawing.Size(70, 17);
      this.checkBoxUIUseHAM.TabIndex = 6;
      this.checkBoxUIUseHAM.Text = "Use HAM";
      this.checkBoxUIUseHAM.UseVisualStyleBackColor = true;
      this.checkBoxUIUseHAM.CheckedChanged += new System.EventHandler(this.checkBoxUIUseHAM_CheckedChanged);
      // 
      // comboBoxH264DeInterlace
      // 
      this.comboBoxH264DeInterlace.BorderColor = System.Drawing.Color.Empty;
      this.comboBoxH264DeInterlace.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.comboBoxH264DeInterlace.FormattingEnabled = true;
      this.comboBoxH264DeInterlace.Items.AddRange(new object[] {
            "Auto-select",
            "Force bob",
            "Force weave"});
      this.comboBoxH264DeInterlace.Location = new System.Drawing.Point(52, 143);
      this.comboBoxH264DeInterlace.Name = "comboBoxH264DeInterlace";
      this.comboBoxH264DeInterlace.Size = new System.Drawing.Size(198, 21);
      this.comboBoxH264DeInterlace.TabIndex = 5;
      // 
      // mpLabel6
      // 
      this.mpLabel6.AutoSize = true;
      this.mpLabel6.Location = new System.Drawing.Point(22, 118);
      this.mpLabel6.Name = "mpLabel6";
      this.mpLabel6.Size = new System.Drawing.Size(104, 13);
      this.mpLabel6.TabIndex = 4;
      this.mpLabel6.Text = "De-Interlace Options";
      // 
      // mpLabel5
      // 
      this.mpLabel5.AutoSize = true;
      this.mpLabel5.Location = new System.Drawing.Point(188, 21);
      this.mpLabel5.MaximumSize = new System.Drawing.Size(270, 0);
      this.mpLabel5.Name = "mpLabel5";
      this.mpLabel5.Size = new System.Drawing.Size(256, 26);
      this.mpLabel5.TabIndex = 4;
      this.mpLabel5.Text = "Recommended to reduce CPU utilization. If selected De-Interlace options are contr" +
    "olled by VMR9.";
      // 
      // checkBoxUIUseH264HVA
      // 
      this.checkBoxUIUseH264HVA.AutoSize = true;
      this.checkBoxUIUseH264HVA.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.checkBoxUIUseH264HVA.Location = new System.Drawing.Point(22, 30);
      this.checkBoxUIUseH264HVA.Name = "checkBoxUIUseH264HVA";
      this.checkBoxUIUseH264HVA.Size = new System.Drawing.Size(75, 17);
      this.checkBoxUIUseH264HVA.TabIndex = 4;
      this.checkBoxUIUseH264HVA.Text = "Use DXVA";
      this.checkBoxUIUseH264HVA.UseVisualStyleBackColor = true;
//.........这里部分代码省略.........
开发者ID:splatterpop,项目名称:MediaPortal-1,代码行数:101,代码来源:FiltersPowerDVDDecoder10.cs

示例14: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
   this.radioButton1 = new MediaPortal.UserInterface.Controls.MPRadioButton();
   this.groupBox3 = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.byIndexCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.showChannelNumberCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.channelNumberMaxLengthNumUpDn = new System.Windows.Forms.NumericUpDown();
   this.lblChanNumMaxLen = new System.Windows.Forms.Label();
   this.groupBox5 = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.cbAutoFullscreen = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.cbTurnOnTv = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.label8 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.cbDeinterlace = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.mpGroupBoxAdditional = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.groupBox3.SuspendLayout();
   ((System.ComponentModel.ISupportInitialize)(this.channelNumberMaxLengthNumUpDn)).BeginInit();
   this.groupBox5.SuspendLayout();
   this.mpGroupBoxAdditional.SuspendLayout();
   this.SuspendLayout();
   // 
   // radioButton1
   // 
   this.radioButton1.AutoSize = true;
   this.radioButton1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.radioButton1.Location = new System.Drawing.Point(0, 0);
   this.radioButton1.Name = "radioButton1";
   this.radioButton1.Size = new System.Drawing.Size(104, 24);
   this.radioButton1.TabIndex = 0;
   this.radioButton1.UseVisualStyleBackColor = true;
   // 
   // groupBox3
   // 
   this.groupBox3.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
        | System.Windows.Forms.AnchorStyles.Right)));
   this.groupBox3.Controls.Add(this.byIndexCheckBox);
   this.groupBox3.Controls.Add(this.showChannelNumberCheckBox);
   this.groupBox3.Controls.Add(this.channelNumberMaxLengthNumUpDn);
   this.groupBox3.Controls.Add(this.lblChanNumMaxLen);
   this.groupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.groupBox3.Location = new System.Drawing.Point(6, 66);
   this.groupBox3.Name = "groupBox3";
   this.groupBox3.Size = new System.Drawing.Size(233, 94);
   this.groupBox3.TabIndex = 3;
   this.groupBox3.TabStop = false;
   this.groupBox3.Text = "Channel numbers";
   // 
   // byIndexCheckBox
   // 
   this.byIndexCheckBox.AutoSize = true;
   this.byIndexCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.byIndexCheckBox.Location = new System.Drawing.Point(17, 20);
   this.byIndexCheckBox.Name = "byIndexCheckBox";
   this.byIndexCheckBox.Size = new System.Drawing.Size(182, 17);
   this.byIndexCheckBox.TabIndex = 0;
   this.byIndexCheckBox.Text = "Select channel by index (non-US)";
   this.byIndexCheckBox.UseVisualStyleBackColor = true;
   // 
   // showChannelNumberCheckBox
   // 
   this.showChannelNumberCheckBox.AutoSize = true;
   this.showChannelNumberCheckBox.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.showChannelNumberCheckBox.Location = new System.Drawing.Point(17, 40);
   this.showChannelNumberCheckBox.Name = "showChannelNumberCheckBox";
   this.showChannelNumberCheckBox.Size = new System.Drawing.Size(135, 17);
   this.showChannelNumberCheckBox.TabIndex = 1;
   this.showChannelNumberCheckBox.Text = "Show channel numbers";
   this.showChannelNumberCheckBox.UseVisualStyleBackColor = true;
   // 
   // channelNumberMaxLengthNumUpDn
   // 
   this.channelNumberMaxLengthNumUpDn.AutoSize = true;
   this.channelNumberMaxLengthNumUpDn.Location = new System.Drawing.Point(178, 60);
   this.channelNumberMaxLengthNumUpDn.Maximum = new decimal(new int[]
                                                              {
                                                                5,
                                                                0,
                                                                0,
                                                                0
                                                              });
   this.channelNumberMaxLengthNumUpDn.Minimum = new decimal(new int[]
                                                              {
                                                                1,
                                                                0,
                                                                0,
                                                                0
                                                              });
   this.channelNumberMaxLengthNumUpDn.Name = "channelNumberMaxLengthNumUpDn";
   this.channelNumberMaxLengthNumUpDn.Size = new System.Drawing.Size(42, 20);
   this.channelNumberMaxLengthNumUpDn.TabIndex = 3;
   this.channelNumberMaxLengthNumUpDn.Value = new decimal(new int[]
                                                            {
                                                              3,
                                                              0,
                                                              0,
//.........这里部分代码省略.........
开发者ID:npcomplete111,项目名称:MediaPortal-1,代码行数:101,代码来源:TV.cs

示例15: InitializeComponent

 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
   this.groupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.cmdTest = new MediaPortal.UserInterface.Controls.MPButton();
   this.label2 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.testRedeyeChannelsTextBox = new MediaPortal.UserInterface.Controls.MPTextBox();
   this.buttonIRDA = new MediaPortal.UserInterface.Controls.MPButton();
   this.buttonRC5 = new MediaPortal.UserInterface.Controls.MPButton();
   this.buttonSKY = new MediaPortal.UserInterface.Controls.MPButton();
   this.label7 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.label6 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.CommandDelayCombo = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.label1 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.CommPortCombo = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.inputCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
   this.infoTextBox = new MediaPortal.UserInterface.Controls.MPTextBox();
   this.groupBox2 = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.statusLabel = new MediaPortal.UserInterface.Controls.MPLabel();
   this.groupBox3 = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.groupBox1.SuspendLayout();
   this.groupBox2.SuspendLayout();
   this.groupBox3.SuspendLayout();
   this.SuspendLayout();
   // 
   // groupBox1
   // 
   this.groupBox1.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
        | System.Windows.Forms.AnchorStyles.Right)));
   this.groupBox1.Controls.Add(this.cmdTest);
   this.groupBox1.Controls.Add(this.label2);
   this.groupBox1.Controls.Add(this.testRedeyeChannelsTextBox);
   this.groupBox1.Controls.Add(this.buttonIRDA);
   this.groupBox1.Controls.Add(this.buttonRC5);
   this.groupBox1.Controls.Add(this.buttonSKY);
   this.groupBox1.Controls.Add(this.label7);
   this.groupBox1.Controls.Add(this.label6);
   this.groupBox1.Controls.Add(this.CommandDelayCombo);
   this.groupBox1.Controls.Add(this.label1);
   this.groupBox1.Controls.Add(this.CommPortCombo);
   this.groupBox1.Controls.Add(this.inputCheckBox);
   this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.groupBox1.Location = new System.Drawing.Point(6, 0);
   this.groupBox1.Name = "groupBox1";
   this.groupBox1.Size = new System.Drawing.Size(462, 184);
   this.groupBox1.TabIndex = 0;
   this.groupBox1.TabStop = false;
   this.groupBox1.Text = "General settings";
   // 
   // cmdTest
   // 
   this.cmdTest.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      ((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
   this.cmdTest.Location = new System.Drawing.Point(374, 152);
   this.cmdTest.Name = "cmdTest";
   this.cmdTest.Size = new System.Drawing.Size(72, 22);
   this.cmdTest.TabIndex = 11;
   this.cmdTest.Text = "Test";
   this.cmdTest.UseVisualStyleBackColor = true;
   this.cmdTest.Click += new System.EventHandler(this.cmdTest_Click);
   // 
   // label2
   // 
   this.label2.Location = new System.Drawing.Point(16, 128);
   this.label2.Name = "label2";
   this.label2.Size = new System.Drawing.Size(48, 16);
   this.label2.TabIndex = 9;
   this.label2.Text = "Channels:";
   // 
   // testRedeyeChannelsTextBox
   // 
   this.testRedeyeChannelsTextBox.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
        | System.Windows.Forms.AnchorStyles.Right)));
   this.testRedeyeChannelsTextBox.BorderColor = System.Drawing.Color.Empty;
   this.testRedeyeChannelsTextBox.Location = new System.Drawing.Point(168, 124);
   this.testRedeyeChannelsTextBox.MaxLength = 3;
   this.testRedeyeChannelsTextBox.Name = "testRedeyeChannelsTextBox";
   this.testRedeyeChannelsTextBox.Size = new System.Drawing.Size(278, 20);
   this.testRedeyeChannelsTextBox.TabIndex = 10;
   // 
   // buttonIRDA
   // 
   this.buttonIRDA.Location = new System.Drawing.Point(167, 50);
   this.buttonIRDA.Name = "buttonIRDA";
   this.buttonIRDA.Size = new System.Drawing.Size(72, 23);
   this.buttonIRDA.TabIndex = 2;
   this.buttonIRDA.Text = "IRDA";
   this.buttonIRDA.UseVisualStyleBackColor = true;
   this.buttonIRDA.Click += new System.EventHandler(this.buttonIRDA_Click);
   // 
   // buttonRC5
   // 
//.........这里部分代码省略.........
开发者ID:arangas,项目名称:MediaPortal-1,代码行数:101,代码来源:RemoteRedEye.cs


注:本文中的MediaPortal.UserInterface.Controls.MPComboBox类示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。