コード例 #1
0
ファイル: MPListView.cs プロジェクト: usermonk/MediaPortal-1
        protected override void OnDragEnter(DragEventArgs e)
        {
            if (!AllowRowReorder)
            {
                e.Effect = DragDropEffects.None;
                return;
            }

            //if (!e.Data.GetDataPresent(DataFormats.Text))
            //{
            //  e.Effect = DragDropEffects.None;
            //  return;
            //}

            //String text = (String)e.Data.GetData(REORDER.GetType());
            //e.Effect = text.CompareTo(REORDER) == 0 ? DragDropEffects.Move : DragDropEffects.None;

            if (!isChannelListView)
            {
                e.Effect = (e.Data.GetData(REORDER.GetType()) as string) == REORDER
                     ? DragDropEffects.Move
                     : DragDropEffects.None;
            }
            else
            {
                MPListView lv = e.Data.GetData(typeof(MPListView)) as MPListView;
                if (lv != null)
                {
                    if (lv == this)
                    {
                        e.Effect = DragDropEffects.Move;
                    }
                    else
                    {
                        e.Effect = DragDropEffects.Copy;
                    }
                }
                else
                {
                    e.Effect = DragDropEffects.None;
                }
            }

            base.OnDragEnter(e);
        }
コード例 #2
0
    private void AddSelectedItemsToGroup(MPListView sourceListView)
    {
      if (_channelGroup == null)
      {
        return;
      }

      TvBusinessLayer layer = new TvBusinessLayer();
      foreach (ListViewItem sourceItem in sourceListView.SelectedItems)
      {
        Channel channel = null;
        if (sourceItem.Tag is Channel)
        {
          channel = (Channel)sourceItem.Tag;
        }
        else if (sourceItem.Tag is RadioGroupMap)
        {
          channel = layer.GetChannel(((RadioGroupMap)sourceItem.Tag).IdChannel);
        }
        else
        {
          continue;
        }

        RadioGroupMap groupMap = null;

        layer.AddChannelToRadioGroup(channel, _channelGroup);

        //get the new group map and set the listitem tag
        SqlBuilder sb = new SqlBuilder(StatementType.Select, typeof (RadioGroupMap));

        sb.AddConstraint(Operator.Equals, "idChannel", channel.IdChannel);
        sb.AddConstraint(Operator.Equals, "idGroup", _channelGroup.IdGroup);

        SqlStatement stmt = sb.GetStatement(true);

        groupMap = ObjectFactory.GetInstance<RadioGroupMap>(stmt.Execute());

        foreach (ListViewItem item in listView1.Items)
        {
          if ((item.Tag as Channel) == channel)
          {
            item.Tag = groupMap;
            break;
          }
        }
      }
    }
コード例 #3
0
ファイル: TVClient.cs プロジェクト: nio22/MediaPortal-1
    private void InitializeComponent()
    {
      this.mpGroupBox2 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.mpTextBoxHostname = new MediaPortal.UserInterface.Controls.MPTextBox();
      this.mpLabel3 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpGroupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.enableAudioDualMonoModes = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpCheckBoxPrefAudioOverLang = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpCheckBoxPrefAC3 = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.tabControlTVGeneral = new MediaPortal.UserInterface.Controls.MPTabControl();
      this.tabPageGeneralSettings = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.mpGroupBox900 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.mpNumericTextBoxWOLTimeOut = new MediaPortal.UserInterface.Controls.MPNumericTextBox();
      this.mpLabelWOLTimeOut = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpTextBoxMacAddress = new MediaPortal.UserInterface.Controls.MPTextBox();
      this.mpLabel400 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpCheckBoxIsAutoMacAddressEnabled = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpCheckBoxIsWakeOnLanEnabled = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.grpTsReader = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.cbRelaxTsReader = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpGroupBox6 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.cbContinuousScrollGuide = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.cbShowChannelStateIcons = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.labelShowEpisodeinfo = new MediaPortal.UserInterface.Controls.MPLabel();
      this.comboboxShowEpisodeInfo = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.mpGroupBox5 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.cbHideAllChannels = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.tabPageAudioLanguages = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.groupBox2 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.mpLabel5 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpLabel1 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpButtonDownAudioLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpButtonUpAudioLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpButtonAddAudioLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpButtonRemoveAudioLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpListViewPreferredAudioLang = new MediaPortal.UserInterface.Controls.MPListView();
      this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.mpListViewAvailAudioLang = new MediaPortal.UserInterface.Controls.MPListView();
      this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.tabPageSubtitles = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.mpGroupBox4 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.mpCheckBoxEnableCCSub = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpCheckBoxAutoShowSubWhenTvStarts = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpCheckBoxEnableTTXTSub = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpCheckBoxEnableDVBSub = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpGroupBox3 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.mpLabel6 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpLabel7 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpButtonDownSubLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpButtonUpSubLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpButtonAddSubLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpButtonRemoveSubLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpListViewPreferredSubLang = new MediaPortal.UserInterface.Controls.MPListView();
      this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.mpListViewAvailSubLang = new MediaPortal.UserInterface.Controls.MPListView();
      this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.tabPage1 = new System.Windows.Forms.TabPage();
      this.mpGroupBox8 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.chkRecnotifications = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpGroupBox7 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.txtNotifyAfter = new MediaPortal.UserInterface.Controls.MPTextBox();
      this.labelNotifyTimeout = new MediaPortal.UserInterface.Controls.MPLabel();
      this.checkBoxNotifyPlaySound = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpLabel2 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.txtNotifyBefore = new MediaPortal.UserInterface.Controls.MPTextBox();
      this.mpGroupBox2.SuspendLayout();
      this.mpGroupBox1.SuspendLayout();
      this.tabControlTVGeneral.SuspendLayout();
      this.tabPageGeneralSettings.SuspendLayout();
      this.mpGroupBox900.SuspendLayout();
      this.grpTsReader.SuspendLayout();
      this.mpGroupBox6.SuspendLayout();
      this.mpGroupBox5.SuspendLayout();
      this.tabPageAudioLanguages.SuspendLayout();
      this.groupBox2.SuspendLayout();
      this.tabPageSubtitles.SuspendLayout();
      this.mpGroupBox4.SuspendLayout();
      this.mpGroupBox3.SuspendLayout();
      this.tabPage1.SuspendLayout();
      this.mpGroupBox8.SuspendLayout();
      this.mpGroupBox7.SuspendLayout();
      this.SuspendLayout();
      // 
      // mpGroupBox2
      // 
      this.mpGroupBox2.Controls.Add(this.mpTextBoxHostname);
      this.mpGroupBox2.Controls.Add(this.mpLabel3);
      this.mpGroupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox2.Location = new System.Drawing.Point(16, 16);
      this.mpGroupBox2.Name = "mpGroupBox2";
      this.mpGroupBox2.Size = new System.Drawing.Size(431, 53);
      this.mpGroupBox2.TabIndex = 10;
      this.mpGroupBox2.TabStop = false;
      this.mpGroupBox2.Text = "TV-Server";
      // 
      // mpTextBoxHostname
      // 
      this.mpTextBoxHostname.BorderColor = System.Drawing.Color.Empty;
      this.mpTextBoxHostname.Location = new System.Drawing.Point(126, 22);
      this.mpTextBoxHostname.Name = "mpTextBoxHostname";
      this.mpTextBoxHostname.Size = new System.Drawing.Size(229, 20);
      this.mpTextBoxHostname.TabIndex = 6;
      // 
      // mpLabel3
      // 
      this.mpLabel3.AutoSize = true;
      this.mpLabel3.Location = new System.Drawing.Point(19, 25);
      this.mpLabel3.Name = "mpLabel3";
      this.mpLabel3.Size = new System.Drawing.Size(58, 13);
      this.mpLabel3.TabIndex = 5;
      this.mpLabel3.Text = "Hostname:";
      // 
      // mpGroupBox1
      // 
      this.mpGroupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.mpGroupBox1.Controls.Add(this.enableAudioDualMonoModes);
      this.mpGroupBox1.Controls.Add(this.mpCheckBoxPrefAudioOverLang);
      this.mpGroupBox1.Controls.Add(this.mpCheckBoxPrefAC3);
      this.mpGroupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox1.Location = new System.Drawing.Point(16, 338);
      this.mpGroupBox1.Name = "mpGroupBox1";
      this.mpGroupBox1.Size = new System.Drawing.Size(432, 75);
      this.mpGroupBox1.TabIndex = 9;
      this.mpGroupBox1.TabStop = false;
      this.mpGroupBox1.Text = "Audio stream settings";
      // 
      // enableAudioDualMonoModes
      // 
      this.enableAudioDualMonoModes.AutoSize = true;
      this.enableAudioDualMonoModes.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
      this.enableAudioDualMonoModes.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.enableAudioDualMonoModes.Location = new System.Drawing.Point(9, 41);
      this.enableAudioDualMonoModes.Name = "enableAudioDualMonoModes";
      this.enableAudioDualMonoModes.Size = new System.Drawing.Size(386, 30);
      this.enableAudioDualMonoModes.TabIndex = 12;
      this.enableAudioDualMonoModes.Text = "Enable AudioDualMono mode switching\r\n(if 1 audio stream contains 2x mono channels" +
          ", you can switch between them)";
      this.enableAudioDualMonoModes.UseVisualStyleBackColor = true;
      // 
      // mpCheckBoxPrefAudioOverLang
      // 
      this.mpCheckBoxPrefAudioOverLang.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
      this.mpCheckBoxPrefAudioOverLang.AutoSize = true;
      this.mpCheckBoxPrefAudioOverLang.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxPrefAudioOverLang.Location = new System.Drawing.Point(239, 18);
      this.mpCheckBoxPrefAudioOverLang.Name = "mpCheckBoxPrefAudioOverLang";
      this.mpCheckBoxPrefAudioOverLang.Size = new System.Drawing.Size(172, 17);
      this.mpCheckBoxPrefAudioOverLang.TabIndex = 11;
      this.mpCheckBoxPrefAudioOverLang.Text = "Prefer audiotype over language";
      this.mpCheckBoxPrefAudioOverLang.UseVisualStyleBackColor = false;
      // 
      // mpCheckBoxPrefAC3
      // 
      this.mpCheckBoxPrefAC3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
      this.mpCheckBoxPrefAC3.AutoSize = true;
      this.mpCheckBoxPrefAC3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxPrefAC3.Location = new System.Drawing.Point(9, 18);
      this.mpCheckBoxPrefAC3.Name = "mpCheckBoxPrefAC3";
      this.mpCheckBoxPrefAC3.Size = new System.Drawing.Size(110, 17);
      this.mpCheckBoxPrefAC3.TabIndex = 7;
      this.mpCheckBoxPrefAC3.Text = "Prefer AC-3 sound";
      this.mpCheckBoxPrefAC3.UseVisualStyleBackColor = false;
      // 
      // tabControlTVGeneral
      // 
      this.tabControlTVGeneral.Controls.Add(this.tabPageGeneralSettings);
      this.tabControlTVGeneral.Controls.Add(this.tabPageAudioLanguages);
      this.tabControlTVGeneral.Controls.Add(this.tabPageSubtitles);
      this.tabControlTVGeneral.Controls.Add(this.tabPage1);
      this.tabControlTVGeneral.Location = new System.Drawing.Point(0, 2);
      this.tabControlTVGeneral.Name = "tabControlTVGeneral";
      this.tabControlTVGeneral.SelectedIndex = 0;
      this.tabControlTVGeneral.Size = new System.Drawing.Size(472, 445);
      this.tabControlTVGeneral.TabIndex = 11;
      // 
      // tabPageGeneralSettings
      // 
      this.tabPageGeneralSettings.Controls.Add(this.mpGroupBox900);
      this.tabPageGeneralSettings.Controls.Add(this.grpTsReader);
      this.tabPageGeneralSettings.Controls.Add(this.mpGroupBox6);
      this.tabPageGeneralSettings.Controls.Add(this.mpGroupBox5);
      this.tabPageGeneralSettings.Controls.Add(this.mpGroupBox2);
      this.tabPageGeneralSettings.Location = new System.Drawing.Point(4, 22);
      this.tabPageGeneralSettings.Name = "tabPageGeneralSettings";
      this.tabPageGeneralSettings.Padding = new System.Windows.Forms.Padding(3);
      this.tabPageGeneralSettings.Size = new System.Drawing.Size(464, 419);
      this.tabPageGeneralSettings.TabIndex = 0;
      this.tabPageGeneralSettings.Text = "General settings";
      this.tabPageGeneralSettings.UseVisualStyleBackColor = true;
      // 
      // mpGroupBox900
      // 
      this.mpGroupBox900.AutoSizeMode = System.Windows.Forms.AutoSizeMode.GrowAndShrink;
      this.mpGroupBox900.Controls.Add(this.mpNumericTextBoxWOLTimeOut);
      this.mpGroupBox900.Controls.Add(this.mpLabelWOLTimeOut);
      this.mpGroupBox900.Controls.Add(this.mpTextBoxMacAddress);
      this.mpGroupBox900.Controls.Add(this.mpLabel400);
      this.mpGroupBox900.Controls.Add(this.mpCheckBoxIsAutoMacAddressEnabled);
      this.mpGroupBox900.Controls.Add(this.mpCheckBoxIsWakeOnLanEnabled);
      this.mpGroupBox900.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox900.Location = new System.Drawing.Point(16, 286);
      this.mpGroupBox900.Name = "mpGroupBox900";
      this.mpGroupBox900.Size = new System.Drawing.Size(431, 126);
      this.mpGroupBox900.TabIndex = 14;
      this.mpGroupBox900.TabStop = false;
      this.mpGroupBox900.Text = "Wake-On-Lan";
      // 
      // mpNumericTextBoxWOLTimeOut
      // 
      this.mpNumericTextBoxWOLTimeOut.AutoCompleteCustomSource.AddRange(new string[] {
            "10",
            "20",
            "30",
            "40",
            "50",
            "60",
            "70",
            "80",
            "90"});
      this.mpNumericTextBoxWOLTimeOut.AutoCompleteMode = System.Windows.Forms.AutoCompleteMode.Suggest;
      this.mpNumericTextBoxWOLTimeOut.Enabled = false;
      this.mpNumericTextBoxWOLTimeOut.Location = new System.Drawing.Point(126, 42);
      this.mpNumericTextBoxWOLTimeOut.MaxLength = 4;
      this.mpNumericTextBoxWOLTimeOut.Name = "mpNumericTextBoxWOLTimeOut";
      this.mpNumericTextBoxWOLTimeOut.Size = new System.Drawing.Size(45, 20);
      this.mpNumericTextBoxWOLTimeOut.TabIndex = 9;
      this.mpNumericTextBoxWOLTimeOut.Tag = "Default timeout is 10 seconds";
      this.mpNumericTextBoxWOLTimeOut.Text = "10";
      this.mpNumericTextBoxWOLTimeOut.Value = 10;
      this.mpNumericTextBoxWOLTimeOut.WordWrap = false;
      // 
      // mpLabelWOLTimeOut
      // 
      this.mpLabelWOLTimeOut.AutoSize = true;
      this.mpLabelWOLTimeOut.Location = new System.Drawing.Point(41, 45);
      this.mpLabelWOLTimeOut.Name = "mpLabelWOLTimeOut";
      this.mpLabelWOLTimeOut.Size = new System.Drawing.Size(72, 13);
      this.mpLabelWOLTimeOut.TabIndex = 8;
      this.mpLabelWOLTimeOut.Text = "WOL timeout:";
      // 
      // mpTextBoxMacAddress
      // 
      this.mpTextBoxMacAddress.BorderColor = System.Drawing.Color.Empty;
      this.mpTextBoxMacAddress.Location = new System.Drawing.Point(126, 91);
      this.mpTextBoxMacAddress.MaxLength = 17;
      this.mpTextBoxMacAddress.Name = "mpTextBoxMacAddress";
      this.mpTextBoxMacAddress.Size = new System.Drawing.Size(97, 20);
      this.mpTextBoxMacAddress.TabIndex = 7;
      this.mpTextBoxMacAddress.Text = "00:00:00:00:00:00";
      // 
      // mpLabel400
      // 
      this.mpLabel400.AutoSize = true;
      this.mpLabel400.Location = new System.Drawing.Point(41, 94);
      this.mpLabel400.Name = "mpLabel400";
      this.mpLabel400.Size = new System.Drawing.Size(74, 13);
      this.mpLabel400.TabIndex = 6;
      this.mpLabel400.Text = "MAC Address:";
      // 
      // mpCheckBoxIsAutoMacAddressEnabled
      // 
      this.mpCheckBoxIsAutoMacAddressEnabled.AutoSize = true;
      this.mpCheckBoxIsAutoMacAddressEnabled.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxIsAutoMacAddressEnabled.Location = new System.Drawing.Point(44, 68);
      this.mpCheckBoxIsAutoMacAddressEnabled.Name = "mpCheckBoxIsAutoMacAddressEnabled";
      this.mpCheckBoxIsAutoMacAddressEnabled.Size = new System.Drawing.Size(192, 17);
      this.mpCheckBoxIsAutoMacAddressEnabled.TabIndex = 1;
      this.mpCheckBoxIsAutoMacAddressEnabled.Text = "Auto-configure server MAC Address";
      this.mpCheckBoxIsAutoMacAddressEnabled.UseVisualStyleBackColor = true;
      this.mpCheckBoxIsAutoMacAddressEnabled.CheckedChanged += new System.EventHandler(this.mpCheckBoxIsAutoMacAddressEnabled_CheckedChanged);
      // 
      // mpCheckBoxIsWakeOnLanEnabled
      // 
      this.mpCheckBoxIsWakeOnLanEnabled.AutoSize = true;
      this.mpCheckBoxIsWakeOnLanEnabled.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxIsWakeOnLanEnabled.Location = new System.Drawing.Point(22, 19);
      this.mpCheckBoxIsWakeOnLanEnabled.Name = "mpCheckBoxIsWakeOnLanEnabled";
      this.mpCheckBoxIsWakeOnLanEnabled.Size = new System.Drawing.Size(172, 17);
      this.mpCheckBoxIsWakeOnLanEnabled.TabIndex = 0;
      this.mpCheckBoxIsWakeOnLanEnabled.Text = "Wake up TV Server as needed";
      this.mpCheckBoxIsWakeOnLanEnabled.UseVisualStyleBackColor = true;
      this.mpCheckBoxIsWakeOnLanEnabled.CheckedChanged += new System.EventHandler(this.mpCheckBoxIsWakeOnLanEnabled_CheckedChanged);
      // 
      // grpTsReader
      // 
      this.grpTsReader.Controls.Add(this.cbRelaxTsReader);
      this.grpTsReader.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.grpTsReader.Location = new System.Drawing.Point(16, 231);
      this.grpTsReader.Name = "grpTsReader";
      this.grpTsReader.Size = new System.Drawing.Size(431, 47);
      this.grpTsReader.TabIndex = 12;
      this.grpTsReader.TabStop = false;
      this.grpTsReader.Text = "TsReader options";
      // 
      // cbRelaxTsReader
      // 
      this.cbRelaxTsReader.AutoSize = true;
      this.cbRelaxTsReader.Checked = true;
      this.cbRelaxTsReader.CheckState = System.Windows.Forms.CheckState.Checked;
      this.cbRelaxTsReader.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.cbRelaxTsReader.Location = new System.Drawing.Point(22, 19);
      this.cbRelaxTsReader.Name = "cbRelaxTsReader";
      this.cbRelaxTsReader.Size = new System.Drawing.Size(347, 17);
      this.cbRelaxTsReader.TabIndex = 0;
      this.cbRelaxTsReader.Text = "Don\'t drop discontinued packets in TsReader (can reduce stuttering)";
      this.cbRelaxTsReader.UseVisualStyleBackColor = true;
      // 
      // mpGroupBox6
      // 
      this.mpGroupBox6.Controls.Add(this.cbContinuousScrollGuide);
      this.mpGroupBox6.Controls.Add(this.cbShowChannelStateIcons);
      this.mpGroupBox6.Controls.Add(this.labelShowEpisodeinfo);
      this.mpGroupBox6.Controls.Add(this.comboboxShowEpisodeInfo);
      this.mpGroupBox6.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox6.Location = new System.Drawing.Point(16, 127);
      this.mpGroupBox6.Name = "mpGroupBox6";
      this.mpGroupBox6.Size = new System.Drawing.Size(431, 96);
      this.mpGroupBox6.TabIndex = 12;
      this.mpGroupBox6.TabStop = false;
      this.mpGroupBox6.Text = "Guide";
      // 
      // cbContinuousScrollGuide
      // 
      this.cbContinuousScrollGuide.AutoSize = true;
      this.cbContinuousScrollGuide.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.cbContinuousScrollGuide.Location = new System.Drawing.Point(22, 40);
      this.cbContinuousScrollGuide.Name = "cbContinuousScrollGuide";
      this.cbContinuousScrollGuide.Size = new System.Drawing.Size(210, 17);
      this.cbContinuousScrollGuide.TabIndex = 2;
      this.cbContinuousScrollGuide.Text = "Loop guide seamlessly (top and bottom)";
      this.cbContinuousScrollGuide.UseVisualStyleBackColor = true;
      // 
      // cbShowChannelStateIcons
      // 
      this.cbShowChannelStateIcons.AutoSize = true;
      this.cbShowChannelStateIcons.Checked = true;
      this.cbShowChannelStateIcons.CheckState = System.Windows.Forms.CheckState.Checked;
      this.cbShowChannelStateIcons.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.cbShowChannelStateIcons.Location = new System.Drawing.Point(22, 19);
      this.cbShowChannelStateIcons.Name = "cbShowChannelStateIcons";
      this.cbShowChannelStateIcons.Size = new System.Drawing.Size(308, 17);
      this.cbShowChannelStateIcons.TabIndex = 0;
      this.cbShowChannelStateIcons.Text = "Show channel state icons in Mini Guide (on supported skins)";
      this.cbShowChannelStateIcons.UseVisualStyleBackColor = true;
      // 
      // labelShowEpisodeinfo
      // 
      this.labelShowEpisodeinfo.AutoSize = true;
      this.labelShowEpisodeinfo.Location = new System.Drawing.Point(19, 68);
      this.labelShowEpisodeinfo.Name = "labelShowEpisodeinfo";
      this.labelShowEpisodeinfo.Size = new System.Drawing.Size(97, 13);
      this.labelShowEpisodeinfo.TabIndex = 1;
      this.labelShowEpisodeinfo.Text = "Show episode info:";
      // 
      // comboboxShowEpisodeInfo
      // 
      this.comboboxShowEpisodeInfo.BorderColor = System.Drawing.Color.Empty;
      this.comboboxShowEpisodeInfo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.comboboxShowEpisodeInfo.FormattingEnabled = true;
      this.comboboxShowEpisodeInfo.Location = new System.Drawing.Point(126, 64);
      this.comboboxShowEpisodeInfo.Name = "comboboxShowEpisodeInfo";
      this.comboboxShowEpisodeInfo.Size = new System.Drawing.Size(229, 21);
      this.comboboxShowEpisodeInfo.TabIndex = 1;
      // 
      // mpGroupBox5
      // 
      this.mpGroupBox5.Controls.Add(this.cbHideAllChannels);
      this.mpGroupBox5.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox5.Location = new System.Drawing.Point(16, 75);
      this.mpGroupBox5.Name = "mpGroupBox5";
      this.mpGroupBox5.Size = new System.Drawing.Size(431, 45);
      this.mpGroupBox5.TabIndex = 11;
      this.mpGroupBox5.TabStop = false;
      this.mpGroupBox5.Text = "Group options";
      // 
      // cbHideAllChannels
      // 
      this.cbHideAllChannels.AutoSize = true;
      this.cbHideAllChannels.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.cbHideAllChannels.Location = new System.Drawing.Point(22, 19);
      this.cbHideAllChannels.Name = "cbHideAllChannels";
      this.cbHideAllChannels.Size = new System.Drawing.Size(149, 17);
      this.cbHideAllChannels.TabIndex = 0;
      this.cbHideAllChannels.Text = "Hide \"All Channels\" Group";
      this.cbHideAllChannels.UseVisualStyleBackColor = true;
      // 
      // tabPageAudioLanguages
      // 
      this.tabPageAudioLanguages.Controls.Add(this.groupBox2);
      this.tabPageAudioLanguages.Controls.Add(this.mpGroupBox1);
      this.tabPageAudioLanguages.Location = new System.Drawing.Point(4, 22);
      this.tabPageAudioLanguages.Name = "tabPageAudioLanguages";
      this.tabPageAudioLanguages.Padding = new System.Windows.Forms.Padding(3);
      this.tabPageAudioLanguages.Size = new System.Drawing.Size(464, 419);
      this.tabPageAudioLanguages.TabIndex = 3;
      this.tabPageAudioLanguages.Text = "Audio settings";
      this.tabPageAudioLanguages.UseVisualStyleBackColor = true;
      // 
      // groupBox2
      // 
      this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.groupBox2.Controls.Add(this.mpLabel5);
      this.groupBox2.Controls.Add(this.mpLabel1);
      this.groupBox2.Controls.Add(this.mpButtonDownAudioLang);
      this.groupBox2.Controls.Add(this.mpButtonUpAudioLang);
      this.groupBox2.Controls.Add(this.mpButtonAddAudioLang);
      this.groupBox2.Controls.Add(this.mpButtonRemoveAudioLang);
      this.groupBox2.Controls.Add(this.mpListViewPreferredAudioLang);
      this.groupBox2.Controls.Add(this.mpListViewAvailAudioLang);
      this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.groupBox2.Location = new System.Drawing.Point(16, 16);
      this.groupBox2.Name = "groupBox2";
      this.groupBox2.Size = new System.Drawing.Size(432, 284);
      this.groupBox2.TabIndex = 2;
      this.groupBox2.TabStop = false;
      this.groupBox2.Text = "Preferred audio languages";
      // 
      // mpLabel5
      // 
      this.mpLabel5.AutoSize = true;
      this.mpLabel5.Location = new System.Drawing.Point(236, 21);
      this.mpLabel5.Name = "mpLabel5";
      this.mpLabel5.Size = new System.Drawing.Size(102, 13);
      this.mpLabel5.TabIndex = 7;
      this.mpLabel5.Text = "Preferred languages";
      // 
      // mpLabel1
      // 
      this.mpLabel1.AutoSize = true;
      this.mpLabel1.Location = new System.Drawing.Point(6, 21);
      this.mpLabel1.Name = "mpLabel1";
      this.mpLabel1.Size = new System.Drawing.Size(102, 13);
      this.mpLabel1.TabIndex = 6;
      this.mpLabel1.Text = "Available languages";
      // 
      // mpButtonDownAudioLang
      // 
      this.mpButtonDownAudioLang.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
      this.mpButtonDownAudioLang.Location = new System.Drawing.Point(289, 255);
      this.mpButtonDownAudioLang.Name = "mpButtonDownAudioLang";
      this.mpButtonDownAudioLang.Size = new System.Drawing.Size(46, 20);
      this.mpButtonDownAudioLang.TabIndex = 5;
      this.mpButtonDownAudioLang.Text = "Down";
      this.mpButtonDownAudioLang.UseVisualStyleBackColor = true;
      this.mpButtonDownAudioLang.Click += new System.EventHandler(this.mpButtonDownAudioLang_Click);
      // 
      // mpButtonUpAudioLang
      // 
      this.mpButtonUpAudioLang.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
      this.mpButtonUpAudioLang.Location = new System.Drawing.Point(237, 255);
      this.mpButtonUpAudioLang.Name = "mpButtonUpAudioLang";
      this.mpButtonUpAudioLang.Size = new System.Drawing.Size(46, 20);
      this.mpButtonUpAudioLang.TabIndex = 4;
      this.mpButtonUpAudioLang.Text = "Up";
      this.mpButtonUpAudioLang.UseVisualStyleBackColor = true;
      this.mpButtonUpAudioLang.Click += new System.EventHandler(this.mpButtonUpAudioLang_Click);
      // 
      // mpButtonAddAudioLang
      // 
      this.mpButtonAddAudioLang.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.mpButtonAddAudioLang.Location = new System.Drawing.Point(202, 40);
      this.mpButtonAddAudioLang.Name = "mpButtonAddAudioLang";
      this.mpButtonAddAudioLang.Size = new System.Drawing.Size(28, 20);
      this.mpButtonAddAudioLang.TabIndex = 3;
      this.mpButtonAddAudioLang.Text = ">";
      this.mpButtonAddAudioLang.UseVisualStyleBackColor = true;
      this.mpButtonAddAudioLang.Click += new System.EventHandler(this.mpButtonAddAudioLang_Click);
      // 
      // mpButtonRemoveAudioLang
      // 
      this.mpButtonRemoveAudioLang.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.mpButtonRemoveAudioLang.Location = new System.Drawing.Point(202, 66);
      this.mpButtonRemoveAudioLang.Name = "mpButtonRemoveAudioLang";
      this.mpButtonRemoveAudioLang.Size = new System.Drawing.Size(28, 20);
      this.mpButtonRemoveAudioLang.TabIndex = 2;
      this.mpButtonRemoveAudioLang.Text = "<";
      this.mpButtonRemoveAudioLang.UseVisualStyleBackColor = true;
      this.mpButtonRemoveAudioLang.Click += new System.EventHandler(this.mpButtonRemoveAudioLang_Click);
      // 
      // mpListViewPreferredAudioLang
      // 
      this.mpListViewPreferredAudioLang.AllowDrop = true;
      this.mpListViewPreferredAudioLang.AllowRowReorder = true;
      this.mpListViewPreferredAudioLang.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.mpListViewPreferredAudioLang.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader2,
            this.columnHeader6});
      this.mpListViewPreferredAudioLang.FullRowSelect = true;
      this.mpListViewPreferredAudioLang.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
      this.mpListViewPreferredAudioLang.HideSelection = false;
      this.mpListViewPreferredAudioLang.Location = new System.Drawing.Point(239, 40);
      this.mpListViewPreferredAudioLang.Name = "mpListViewPreferredAudioLang";
      this.mpListViewPreferredAudioLang.Size = new System.Drawing.Size(183, 209);
      this.mpListViewPreferredAudioLang.TabIndex = 1;
      this.mpListViewPreferredAudioLang.UseCompatibleStateImageBehavior = false;
      this.mpListViewPreferredAudioLang.View = System.Windows.Forms.View.Details;
      this.mpListViewPreferredAudioLang.SelectedIndexChanged += new System.EventHandler(this.mpListView2_SelectedIndexChanged);
      // 
      // columnHeader2
      // 
      this.columnHeader2.Text = "Language";
      this.columnHeader2.Width = 125;
      // 
      // columnHeader6
      // 
      this.columnHeader6.Text = "ID";
      this.columnHeader6.Width = 35;
      // 
      // mpListViewAvailAudioLang
      // 
      this.mpListViewAvailAudioLang.AllowDrop = true;
      this.mpListViewAvailAudioLang.AllowRowReorder = true;
      this.mpListViewAvailAudioLang.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.mpListViewAvailAudioLang.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader5});
      this.mpListViewAvailAudioLang.FullRowSelect = true;
      this.mpListViewAvailAudioLang.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
      this.mpListViewAvailAudioLang.HideSelection = false;
      this.mpListViewAvailAudioLang.Location = new System.Drawing.Point(6, 40);
      this.mpListViewAvailAudioLang.Name = "mpListViewAvailAudioLang";
      this.mpListViewAvailAudioLang.Size = new System.Drawing.Size(183, 209);
      this.mpListViewAvailAudioLang.TabIndex = 0;
      this.mpListViewAvailAudioLang.UseCompatibleStateImageBehavior = false;
      this.mpListViewAvailAudioLang.View = System.Windows.Forms.View.Details;
      // 
      // columnHeader1
      // 
      this.columnHeader1.Text = "Language";
      this.columnHeader1.Width = 125;
      // 
      // columnHeader5
      // 
      this.columnHeader5.Text = "ID";
      this.columnHeader5.Width = 35;
      // 
      // tabPageSubtitles
      // 
      this.tabPageSubtitles.Controls.Add(this.mpGroupBox4);
      this.tabPageSubtitles.Controls.Add(this.mpGroupBox3);
      this.tabPageSubtitles.Location = new System.Drawing.Point(4, 22);
      this.tabPageSubtitles.Name = "tabPageSubtitles";
      this.tabPageSubtitles.Padding = new System.Windows.Forms.Padding(3);
      this.tabPageSubtitles.Size = new System.Drawing.Size(464, 419);
      this.tabPageSubtitles.TabIndex = 2;
      this.tabPageSubtitles.Text = "Subtitle settings";
      this.tabPageSubtitles.UseVisualStyleBackColor = true;
      // 
      // mpGroupBox4
      // 
      this.mpGroupBox4.Controls.Add(this.mpCheckBoxEnableCCSub);
      this.mpGroupBox4.Controls.Add(this.mpCheckBoxAutoShowSubWhenTvStarts);
      this.mpGroupBox4.Controls.Add(this.mpCheckBoxEnableTTXTSub);
      this.mpGroupBox4.Controls.Add(this.mpCheckBoxEnableDVBSub);
      this.mpGroupBox4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox4.Location = new System.Drawing.Point(16, 308);
      this.mpGroupBox4.Name = "mpGroupBox4";
      this.mpGroupBox4.Size = new System.Drawing.Size(432, 86);
      this.mpGroupBox4.TabIndex = 10;
      this.mpGroupBox4.TabStop = false;
      this.mpGroupBox4.Text = "Subtitle settings";
      // 
      // mpCheckBoxEnableCCSub
      // 
      this.mpCheckBoxEnableCCSub.AutoSize = true;
      this.mpCheckBoxEnableCCSub.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxEnableCCSub.Location = new System.Drawing.Point(244, 51);
      this.mpCheckBoxEnableCCSub.Name = "mpCheckBoxEnableCCSub";
      this.mpCheckBoxEnableCCSub.Size = new System.Drawing.Size(115, 17);
      this.mpCheckBoxEnableCCSub.TabIndex = 12;
      this.mpCheckBoxEnableCCSub.Text = "Enable CC subtitles";
      this.mpCheckBoxEnableCCSub.UseVisualStyleBackColor = false;
      // 
      // mpCheckBoxAutoShowSubWhenTvStarts
      // 
      this.mpCheckBoxAutoShowSubWhenTvStarts.AutoSize = true;
      this.mpCheckBoxAutoShowSubWhenTvStarts.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxAutoShowSubWhenTvStarts.Location = new System.Drawing.Point(8, 51);
      this.mpCheckBoxAutoShowSubWhenTvStarts.Name = "mpCheckBoxAutoShowSubWhenTvStarts";
      this.mpCheckBoxAutoShowSubWhenTvStarts.Size = new System.Drawing.Size(186, 17);
      this.mpCheckBoxAutoShowSubWhenTvStarts.TabIndex = 12;
      this.mpCheckBoxAutoShowSubWhenTvStarts.Text = "Autoshow subtitles when TV starts";
      this.mpCheckBoxAutoShowSubWhenTvStarts.UseVisualStyleBackColor = false;
      // 
      // mpCheckBoxEnableTTXTSub
      // 
      this.mpCheckBoxEnableTTXTSub.AutoSize = true;
      this.mpCheckBoxEnableTTXTSub.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxEnableTTXTSub.Location = new System.Drawing.Point(244, 28);
      this.mpCheckBoxEnableTTXTSub.Name = "mpCheckBoxEnableTTXTSub";
      this.mpCheckBoxEnableTTXTSub.Size = new System.Drawing.Size(135, 17);
      this.mpCheckBoxEnableTTXTSub.TabIndex = 11;
      this.mpCheckBoxEnableTTXTSub.Text = "Enable teletext subtitles";
      this.mpCheckBoxEnableTTXTSub.UseVisualStyleBackColor = false;
      this.mpCheckBoxEnableTTXTSub.CheckedChanged += new System.EventHandler(this.mpCheckBox1_CheckedChanged);
      // 
      // mpCheckBoxEnableDVBSub
      // 
      this.mpCheckBoxEnableDVBSub.AutoSize = true;
      this.mpCheckBoxEnableDVBSub.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxEnableDVBSub.Location = new System.Drawing.Point(8, 28);
      this.mpCheckBoxEnableDVBSub.Name = "mpCheckBoxEnableDVBSub";
      this.mpCheckBoxEnableDVBSub.Size = new System.Drawing.Size(123, 17);
      this.mpCheckBoxEnableDVBSub.TabIndex = 7;
      this.mpCheckBoxEnableDVBSub.Text = "Enable DVB subtitles";
      this.mpCheckBoxEnableDVBSub.UseVisualStyleBackColor = false;
      // 
      // mpGroupBox3
      // 
      this.mpGroupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.mpGroupBox3.Controls.Add(this.mpLabel6);
      this.mpGroupBox3.Controls.Add(this.mpLabel7);
      this.mpGroupBox3.Controls.Add(this.mpButtonDownSubLang);
      this.mpGroupBox3.Controls.Add(this.mpButtonUpSubLang);
      this.mpGroupBox3.Controls.Add(this.mpButtonAddSubLang);
      this.mpGroupBox3.Controls.Add(this.mpButtonRemoveSubLang);
      this.mpGroupBox3.Controls.Add(this.mpListViewPreferredSubLang);
      this.mpGroupBox3.Controls.Add(this.mpListViewAvailSubLang);
      this.mpGroupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox3.Location = new System.Drawing.Point(16, 16);
      this.mpGroupBox3.Name = "mpGroupBox3";
      this.mpGroupBox3.Size = new System.Drawing.Size(432, 286);
      this.mpGroupBox3.TabIndex = 3;
      this.mpGroupBox3.TabStop = false;
      this.mpGroupBox3.Text = "Preferred subtitle languages";
      // 
      // mpLabel6
      // 
      this.mpLabel6.AutoSize = true;
      this.mpLabel6.Location = new System.Drawing.Point(236, 21);
      this.mpLabel6.Name = "mpLabel6";
      this.mpLabel6.Size = new System.Drawing.Size(102, 13);
      this.mpLabel6.TabIndex = 7;
      this.mpLabel6.Text = "Preferred languages";
      // 
      // mpLabel7
      // 
      this.mpLabel7.AutoSize = true;
      this.mpLabel7.Location = new System.Drawing.Point(6, 21);
      this.mpLabel7.Name = "mpLabel7";
      this.mpLabel7.Size = new System.Drawing.Size(102, 13);
      this.mpLabel7.TabIndex = 6;
      this.mpLabel7.Text = "Available languages";
      // 
      // mpButtonDownSubLang
      // 
      this.mpButtonDownSubLang.Location = new System.Drawing.Point(289, 257);
      this.mpButtonDownSubLang.Name = "mpButtonDownSubLang";
      this.mpButtonDownSubLang.Size = new System.Drawing.Size(46, 20);
      this.mpButtonDownSubLang.TabIndex = 5;
      this.mpButtonDownSubLang.Text = "Down";
      this.mpButtonDownSubLang.UseVisualStyleBackColor = true;
      this.mpButtonDownSubLang.Click += new System.EventHandler(this.mpButtonDownSubLang_Click);
      // 
      // mpButtonUpSubLang
      // 
      this.mpButtonUpSubLang.Location = new System.Drawing.Point(237, 257);
      this.mpButtonUpSubLang.Name = "mpButtonUpSubLang";
      this.mpButtonUpSubLang.Size = new System.Drawing.Size(46, 20);
      this.mpButtonUpSubLang.TabIndex = 4;
      this.mpButtonUpSubLang.Text = "Up";
      this.mpButtonUpSubLang.UseVisualStyleBackColor = true;
      this.mpButtonUpSubLang.Click += new System.EventHandler(this.mpButtonUpSubLang_Click);
      // 
      // mpButtonAddSubLang
      // 
      this.mpButtonAddSubLang.Location = new System.Drawing.Point(202, 40);
      this.mpButtonAddSubLang.Name = "mpButtonAddSubLang";
      this.mpButtonAddSubLang.Size = new System.Drawing.Size(28, 20);
      this.mpButtonAddSubLang.TabIndex = 3;
      this.mpButtonAddSubLang.Text = ">";
      this.mpButtonAddSubLang.UseVisualStyleBackColor = true;
      this.mpButtonAddSubLang.Click += new System.EventHandler(this.mpButtonAddSubLang_Click);
      // 
      // mpButtonRemoveSubLang
      // 
      this.mpButtonRemoveSubLang.Location = new System.Drawing.Point(202, 66);
      this.mpButtonRemoveSubLang.Name = "mpButtonRemoveSubLang";
      this.mpButtonRemoveSubLang.Size = new System.Drawing.Size(28, 20);
      this.mpButtonRemoveSubLang.TabIndex = 2;
      this.mpButtonRemoveSubLang.Text = "<";
      this.mpButtonRemoveSubLang.UseVisualStyleBackColor = true;
      this.mpButtonRemoveSubLang.Click += new System.EventHandler(this.mpButtonRemoveSubLang_Click);
      // 
      // mpListViewPreferredSubLang
      // 
      this.mpListViewPreferredSubLang.AllowDrop = true;
      this.mpListViewPreferredSubLang.AllowRowReorder = true;
      this.mpListViewPreferredSubLang.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader4,
            this.columnHeader8});
      this.mpListViewPreferredSubLang.FullRowSelect = true;
      this.mpListViewPreferredSubLang.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
      this.mpListViewPreferredSubLang.HideSelection = false;
      this.mpListViewPreferredSubLang.Location = new System.Drawing.Point(239, 40);
      this.mpListViewPreferredSubLang.Name = "mpListViewPreferredSubLang";
      this.mpListViewPreferredSubLang.Size = new System.Drawing.Size(183, 211);
      this.mpListViewPreferredSubLang.TabIndex = 1;
      this.mpListViewPreferredSubLang.UseCompatibleStateImageBehavior = false;
      this.mpListViewPreferredSubLang.View = System.Windows.Forms.View.Details;
      // 
      // columnHeader4
      // 
      this.columnHeader4.Text = "Language";
      this.columnHeader4.Width = 125;
      // 
      // columnHeader8
      // 
      this.columnHeader8.Text = "ID";
      this.columnHeader8.Width = 35;
      // 
      // mpListViewAvailSubLang
      // 
      this.mpListViewAvailSubLang.AllowDrop = true;
      this.mpListViewAvailSubLang.AllowRowReorder = true;
      this.mpListViewAvailSubLang.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader3,
            this.columnHeader7});
      this.mpListViewAvailSubLang.FullRowSelect = true;
      this.mpListViewAvailSubLang.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
      this.mpListViewAvailSubLang.HideSelection = false;
      this.mpListViewAvailSubLang.Location = new System.Drawing.Point(6, 40);
      this.mpListViewAvailSubLang.Name = "mpListViewAvailSubLang";
      this.mpListViewAvailSubLang.Size = new System.Drawing.Size(183, 211);
      this.mpListViewAvailSubLang.TabIndex = 0;
      this.mpListViewAvailSubLang.UseCompatibleStateImageBehavior = false;
      this.mpListViewAvailSubLang.View = System.Windows.Forms.View.Details;
      // 
      // columnHeader3
      // 
      this.columnHeader3.Text = "Language";
      this.columnHeader3.Width = 125;
      // 
      // columnHeader7
      // 
      this.columnHeader7.Text = "ID";
      this.columnHeader7.Width = 35;
      // 
      // tabPage1
      // 
      this.tabPage1.Controls.Add(this.mpGroupBox8);
      this.tabPage1.Controls.Add(this.mpGroupBox7);
      this.tabPage1.Location = new System.Drawing.Point(4, 22);
      this.tabPage1.Name = "tabPage1";
      this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
      this.tabPage1.Size = new System.Drawing.Size(464, 419);
      this.tabPage1.TabIndex = 4;
      this.tabPage1.Text = "Notifier";
      this.tabPage1.UseVisualStyleBackColor = true;
      // 
      // mpGroupBox8
      // 
      this.mpGroupBox8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.mpGroupBox8.Controls.Add(this.chkRecnotifications);
      this.mpGroupBox8.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox8.Location = new System.Drawing.Point(16, 166);
      this.mpGroupBox8.Name = "mpGroupBox8";
      this.mpGroupBox8.Size = new System.Drawing.Size(431, 82);
      this.mpGroupBox8.TabIndex = 13;
      this.mpGroupBox8.TabStop = false;
      this.mpGroupBox8.Text = "Recording notifications";
      // 
      // chkRecnotifications
      // 
      this.chkRecnotifications.AutoSize = true;
      this.chkRecnotifications.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.chkRecnotifications.Location = new System.Drawing.Point(22, 19);
      this.chkRecnotifications.Name = "chkRecnotifications";
      this.chkRecnotifications.Size = new System.Drawing.Size(327, 17);
      this.chkRecnotifications.TabIndex = 0;
      this.chkRecnotifications.Text = "Enabled (shows a notification when a recording starts and stops)";
      this.chkRecnotifications.UseVisualStyleBackColor = true;
      // 
      // mpGroupBox7
      // 
      this.mpGroupBox7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.mpGroupBox7.Controls.Add(this.txtNotifyAfter);
      this.mpGroupBox7.Controls.Add(this.labelNotifyTimeout);
      this.mpGroupBox7.Controls.Add(this.checkBoxNotifyPlaySound);
      this.mpGroupBox7.Controls.Add(this.mpLabel2);
      this.mpGroupBox7.Controls.Add(this.txtNotifyBefore);
      this.mpGroupBox7.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox7.Location = new System.Drawing.Point(16, 16);
      this.mpGroupBox7.Name = "mpGroupBox7";
      this.mpGroupBox7.Size = new System.Drawing.Size(431, 135);
      this.mpGroupBox7.TabIndex = 12;
      this.mpGroupBox7.TabStop = false;
      this.mpGroupBox7.Text = "TV notifications";
      // 
      // txtNotifyAfter
      // 
      this.txtNotifyAfter.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.txtNotifyAfter.BorderColor = System.Drawing.Color.Empty;
      this.txtNotifyAfter.Location = new System.Drawing.Point(164, 73);
      this.txtNotifyAfter.Name = "txtNotifyAfter";
      this.txtNotifyAfter.Size = new System.Drawing.Size(229, 20);
      this.txtNotifyAfter.TabIndex = 11;
      this.txtNotifyAfter.Text = "15";
      // 
      // labelNotifyTimeout
      // 
      this.labelNotifyTimeout.AutoSize = true;
      this.labelNotifyTimeout.Location = new System.Drawing.Point(19, 76);
      this.labelNotifyTimeout.Name = "labelNotifyTimeout";
      this.labelNotifyTimeout.Size = new System.Drawing.Size(139, 13);
      this.labelNotifyTimeout.TabIndex = 10;
      this.labelNotifyTimeout.Text = "Hide notification after (sec.):";
      // 
      // checkBoxNotifyPlaySound
      // 
      this.checkBoxNotifyPlaySound.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.checkBoxNotifyPlaySound.AutoSize = true;
      this.checkBoxNotifyPlaySound.Checked = true;
      this.checkBoxNotifyPlaySound.CheckState = System.Windows.Forms.CheckState.Checked;
      this.checkBoxNotifyPlaySound.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.checkBoxNotifyPlaySound.Location = new System.Drawing.Point(22, 99);
      this.checkBoxNotifyPlaySound.Name = "checkBoxNotifyPlaySound";
      this.checkBoxNotifyPlaySound.Size = new System.Drawing.Size(105, 17);
      this.checkBoxNotifyPlaySound.TabIndex = 9;
      this.checkBoxNotifyPlaySound.Text = "Play \"notify.wav\"";
      this.checkBoxNotifyPlaySound.UseVisualStyleBackColor = true;
      // 
      // mpLabel2
      // 
      this.mpLabel2.AutoSize = true;
      this.mpLabel2.Location = new System.Drawing.Point(19, 50);
      this.mpLabel2.Name = "mpLabel2";
      this.mpLabel2.Size = new System.Drawing.Size(96, 13);
      this.mpLabel2.TabIndex = 8;
      this.mpLabel2.Text = "Notify before (sec):";
      // 
      // txtNotifyBefore
      // 
      this.txtNotifyBefore.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.txtNotifyBefore.BorderColor = System.Drawing.Color.Empty;
      this.txtNotifyBefore.Location = new System.Drawing.Point(164, 47);
      this.txtNotifyBefore.Name = "txtNotifyBefore";
      this.txtNotifyBefore.Size = new System.Drawing.Size(229, 20);
      this.txtNotifyBefore.TabIndex = 7;
      this.txtNotifyBefore.Text = "300";
      // 
      // TVClient
      // 
      this.Controls.Add(this.tabControlTVGeneral);
      this.Name = "TVClient";
      this.Size = new System.Drawing.Size(510, 450);
      this.mpGroupBox2.ResumeLayout(false);
      this.mpGroupBox2.PerformLayout();
      this.mpGroupBox1.ResumeLayout(false);
      this.mpGroupBox1.PerformLayout();
      this.tabControlTVGeneral.ResumeLayout(false);
      this.tabPageGeneralSettings.ResumeLayout(false);
      this.mpGroupBox900.ResumeLayout(false);
      this.mpGroupBox900.PerformLayout();
      this.grpTsReader.ResumeLayout(false);
      this.grpTsReader.PerformLayout();
      this.mpGroupBox6.ResumeLayout(false);
      this.mpGroupBox6.PerformLayout();
      this.mpGroupBox5.ResumeLayout(false);
      this.mpGroupBox5.PerformLayout();
      this.tabPageAudioLanguages.ResumeLayout(false);
      this.groupBox2.ResumeLayout(false);
      this.groupBox2.PerformLayout();
      this.tabPageSubtitles.ResumeLayout(false);
      this.mpGroupBox4.ResumeLayout(false);
      this.mpGroupBox4.PerformLayout();
      this.mpGroupBox3.ResumeLayout(false);
      this.mpGroupBox3.PerformLayout();
      this.tabPage1.ResumeLayout(false);
      this.mpGroupBox8.ResumeLayout(false);
      this.mpGroupBox8.PerformLayout();
      this.mpGroupBox7.ResumeLayout(false);
      this.mpGroupBox7.PerformLayout();
      this.ResumeLayout(false);

    }
コード例 #4
0
ファイル: TVClient.cs プロジェクト: nio22/MediaPortal-1
 private void moveItemUp(MPListView mplistView)
 {
   ListView.SelectedIndexCollection indexes = mplistView.SelectedIndices;
   if (indexes.Count == 0)
   {
     return;
   }
   for (int i = 0; i < indexes.Count; ++i)
   {
     int index = indexes[i];
     if (index > 0)
     {
       ListViewItem item = mplistView.Items[index];
       mplistView.Items.RemoveAt(index);
       mplistView.Items.Insert(index - 1, item);
     }
   }
 }
コード例 #5
0
ファイル: TVClient.cs プロジェクト: nio22/MediaPortal-1
 private void moveItemDown(MPListView mplistView)
 {
   ListView.SelectedIndexCollection indexes = mplistView.SelectedIndices;
   if (indexes.Count == 0)
   {
     return;
   }
   if (mplistView.Items.Count < 2)
   {
     return;
   }
   for (int i = indexes.Count - 1; i >= 0; i--)
   {
     int index = indexes[i];
     ListViewItem item = mplistView.Items[index];
     mplistView.Items.RemoveAt(index);
     if (index + 1 < mplistView.Items.Count)
     {
       mplistView.Items.Insert(index + 1, item);
     }
     else
     {
       mplistView.Items.Add(item);
     }
   }
 }
コード例 #6
0
    /// <summary>
    /// Required method for Designer support - do not modify
    /// the contents of this method with the code editor.
    /// </summary>
    private void InitializeComponent()
    {
      this.tabControlSkinSettings = new MediaPortal.UserInterface.Controls.MPTabControl();
      this.tabPageGeneral = new System.Windows.Forms.TabPage();
      this.groupBoxTheme = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.panelFitImage = new System.Windows.Forms.Panel();
      this.previewPictureBox = new System.Windows.Forms.PictureBox();
      this.listViewAvailableThemes = new System.Windows.Forms.ListView();
      this.colName = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.colVersion = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.tabPageTVGuideSettings = new System.Windows.Forms.TabPage();
      this.tabControlTvGuideSettings = new MediaPortal.UserInterface.Controls.MPTabControl();
      this.tabPageTvGuideGeneral = new System.Windows.Forms.TabPage();
      this.labelTVPluginNotInstalled = new System.Windows.Forms.Label();
      this.gbGenreSettings = new System.Windows.Forms.GroupBox();
      this.cbColoredGuide = new System.Windows.Forms.CheckBox();
      this.cbBorderHighlight = new System.Windows.Forms.CheckBox();
      this.cbGenreColorKey = new System.Windows.Forms.CheckBox();
      this.cbGenreColoring = new System.Windows.Forms.CheckBox();
      this.tabPageTvGuideColors = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.groupGenreColors = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.labelNoConnectionToServer = new System.Windows.Forms.Label();
      this.listViewGuideGenres = new MediaPortal.UserInterface.Controls.MPListView();
      this.columnHeader9 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.mpButtonOnLaterColor = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpButtonOnNowColor = new MediaPortal.UserInterface.Controls.MPButton();
      this.groupGroupColor = new System.Windows.Forms.GroupBox();
      this.mpLabel11 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.colorComboBoxGroupSel = new MediaPortal.WinCustomControls.ColorComboBox();
      this.mpLabel12 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.colorComboBoxGroup = new MediaPortal.WinCustomControls.ColorComboBox();
      this.groupChannelColors = new System.Windows.Forms.GroupBox();
      this.mpLabel9 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.colorComboBoxChannelSel = new MediaPortal.WinCustomControls.ColorComboBox();
      this.mpLabel10 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.colorComboBoxChannel = new MediaPortal.WinCustomControls.ColorComboBox();
      this.groupDefaultColors = new System.Windows.Forms.GroupBox();
      this.mpLabel14 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.colorComboBoxPgmOnLater = new MediaPortal.WinCustomControls.ColorComboBox();
      this.mpLabel15 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.colorComboBoxPgmOnNow = new MediaPortal.WinCustomControls.ColorComboBox();
      this.mpLabel13 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.colorComboBoxPgmBorder = new MediaPortal.WinCustomControls.ColorComboBox();
      this.mpLabel8 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.colorComboBoxPgmSel = new MediaPortal.WinCustomControls.ColorComboBox();
      this.mpLabel4 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.colorComboBoxPgmEnded = new MediaPortal.WinCustomControls.ColorComboBox();
      this.mpButtonOk = new System.Windows.Forms.Button();
      this.mpButtonCancel = new System.Windows.Forms.Button();
      this.beveledLine1 = new MediaPortal.UserInterface.Controls.MPBeveledLine();
      this.headerLabel = new MediaPortal.UserInterface.Controls.MPGradientLabel();
      this.tabControlSkinSettings.SuspendLayout();
      this.tabPageGeneral.SuspendLayout();
      this.groupBoxTheme.SuspendLayout();
      this.panelFitImage.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.previewPictureBox)).BeginInit();
      this.tabPageTVGuideSettings.SuspendLayout();
      this.tabControlTvGuideSettings.SuspendLayout();
      this.tabPageTvGuideGeneral.SuspendLayout();
      this.gbGenreSettings.SuspendLayout();
      this.tabPageTvGuideColors.SuspendLayout();
      this.groupGenreColors.SuspendLayout();
      this.groupGroupColor.SuspendLayout();
      this.groupChannelColors.SuspendLayout();
      this.groupDefaultColors.SuspendLayout();
      this.SuspendLayout();
      // 
      // tabControlSkinSettings
      // 
      this.tabControlSkinSettings.Controls.Add(this.tabPageGeneral);
      this.tabControlSkinSettings.Controls.Add(this.tabPageTVGuideSettings);
      this.tabControlSkinSettings.Location = new System.Drawing.Point(17, 42);
      this.tabControlSkinSettings.Name = "tabControlSkinSettings";
      this.tabControlSkinSettings.SelectedIndex = 0;
      this.tabControlSkinSettings.Size = new System.Drawing.Size(472, 479);
      this.tabControlSkinSettings.TabIndex = 12;
      // 
      // tabPageGeneral
      // 
      this.tabPageGeneral.Controls.Add(this.groupBoxTheme);
      this.tabPageGeneral.Location = new System.Drawing.Point(4, 22);
      this.tabPageGeneral.Name = "tabPageGeneral";
      this.tabPageGeneral.Padding = new System.Windows.Forms.Padding(3);
      this.tabPageGeneral.Size = new System.Drawing.Size(464, 453);
      this.tabPageGeneral.TabIndex = 6;
      this.tabPageGeneral.Text = "General";
      this.tabPageGeneral.UseVisualStyleBackColor = true;
      // 
      // groupBoxTheme
      // 
      this.groupBoxTheme.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.groupBoxTheme.Controls.Add(this.panelFitImage);
      this.groupBoxTheme.Controls.Add(this.listViewAvailableThemes);
      this.groupBoxTheme.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.groupBoxTheme.Location = new System.Drawing.Point(6, 5);
      this.groupBoxTheme.Name = "groupBoxTheme";
      this.groupBoxTheme.Size = new System.Drawing.Size(452, 442);
      this.groupBoxTheme.TabIndex = 5;
      this.groupBoxTheme.TabStop = false;
      this.groupBoxTheme.Text = "Theme selection";
      // 
      // panelFitImage
      // 
      this.panelFitImage.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.panelFitImage.Controls.Add(this.previewPictureBox);
      this.panelFitImage.Location = new System.Drawing.Point(12, 22);
      this.panelFitImage.Name = "panelFitImage";
      this.panelFitImage.Size = new System.Drawing.Size(430, 222);
      this.panelFitImage.TabIndex = 5;
      // 
      // previewPictureBox
      // 
      this.previewPictureBox.BorderStyle = System.Windows.Forms.BorderStyle.Fixed3D;
      this.previewPictureBox.Dock = System.Windows.Forms.DockStyle.Fill;
      this.previewPictureBox.Image = global::MediaPortal.Configuration.Properties.Resources.mplogo;
      this.previewPictureBox.Location = new System.Drawing.Point(0, 0);
      this.previewPictureBox.Name = "previewPictureBox";
      this.previewPictureBox.Size = new System.Drawing.Size(430, 222);
      this.previewPictureBox.SizeMode = System.Windows.Forms.PictureBoxSizeMode.Zoom;
      this.previewPictureBox.TabIndex = 5;
      this.previewPictureBox.TabStop = false;
      // 
      // listViewAvailableThemes
      // 
      this.listViewAvailableThemes.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.listViewAvailableThemes.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.colName,
            this.colVersion});
      this.listViewAvailableThemes.FullRowSelect = true;
      this.listViewAvailableThemes.HideSelection = false;
      this.listViewAvailableThemes.Location = new System.Drawing.Point(11, 262);
      this.listViewAvailableThemes.MultiSelect = false;
      this.listViewAvailableThemes.Name = "listViewAvailableThemes";
      this.listViewAvailableThemes.Size = new System.Drawing.Size(430, 168);
      this.listViewAvailableThemes.TabIndex = 3;
      this.listViewAvailableThemes.UseCompatibleStateImageBehavior = false;
      this.listViewAvailableThemes.View = System.Windows.Forms.View.Details;
      this.listViewAvailableThemes.SelectedIndexChanged += new System.EventHandler(this.listViewAvailableThemes_SelectedIndexChanged);
      // 
      // colName
      // 
      this.colName.Text = "Name";
      this.colName.Width = 329;
      // 
      // colVersion
      // 
      this.colVersion.Text = "Version";
      this.colVersion.Width = 86;
      // 
      // tabPageTVGuideSettings
      // 
      this.tabPageTVGuideSettings.Controls.Add(this.tabControlTvGuideSettings);
      this.tabPageTVGuideSettings.Location = new System.Drawing.Point(4, 22);
      this.tabPageTVGuideSettings.Name = "tabPageTVGuideSettings";
      this.tabPageTVGuideSettings.Padding = new System.Windows.Forms.Padding(3);
      this.tabPageTVGuideSettings.Size = new System.Drawing.Size(464, 453);
      this.tabPageTVGuideSettings.TabIndex = 5;
      this.tabPageTVGuideSettings.Text = "TV guide";
      this.tabPageTVGuideSettings.UseVisualStyleBackColor = true;
      // 
      // tabControlTvGuideSettings
      // 
      this.tabControlTvGuideSettings.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.tabControlTvGuideSettings.Controls.Add(this.tabPageTvGuideGeneral);
      this.tabControlTvGuideSettings.Controls.Add(this.tabPageTvGuideColors);
      this.tabControlTvGuideSettings.HotTrack = true;
      this.tabControlTvGuideSettings.Location = new System.Drawing.Point(6, 6);
      this.tabControlTvGuideSettings.Name = "tabControlTvGuideSettings";
      this.tabControlTvGuideSettings.SelectedIndex = 0;
      this.tabControlTvGuideSettings.Size = new System.Drawing.Size(452, 441);
      this.tabControlTvGuideSettings.TabIndex = 1;
      // 
      // tabPageTvGuideGeneral
      // 
      this.tabPageTvGuideGeneral.Controls.Add(this.labelTVPluginNotInstalled);
      this.tabPageTvGuideGeneral.Controls.Add(this.gbGenreSettings);
      this.tabPageTvGuideGeneral.Location = new System.Drawing.Point(4, 22);
      this.tabPageTvGuideGeneral.Name = "tabPageTvGuideGeneral";
      this.tabPageTvGuideGeneral.Padding = new System.Windows.Forms.Padding(3);
      this.tabPageTvGuideGeneral.Size = new System.Drawing.Size(444, 415);
      this.tabPageTvGuideGeneral.TabIndex = 2;
      this.tabPageTvGuideGeneral.Text = "Settings";
      this.tabPageTvGuideGeneral.UseVisualStyleBackColor = true;
      // 
      // labelTVPluginNotInstalled
      // 
      this.labelTVPluginNotInstalled.AutoSize = true;
      this.labelTVPluginNotInstalled.ForeColor = System.Drawing.SystemColors.ControlText;
      this.labelTVPluginNotInstalled.Location = new System.Drawing.Point(6, 28);
      this.labelTVPluginNotInstalled.Name = "labelTVPluginNotInstalled";
      this.labelTVPluginNotInstalled.Size = new System.Drawing.Size(128, 13);
      this.labelTVPluginNotInstalled.TabIndex = 1;
      this.labelTVPluginNotInstalled.Text = "labelTVPluginNotInstalled";
      // 
      // gbGenreSettings
      // 
      this.gbGenreSettings.Controls.Add(this.cbColoredGuide);
      this.gbGenreSettings.Controls.Add(this.cbBorderHighlight);
      this.gbGenreSettings.Controls.Add(this.cbGenreColorKey);
      this.gbGenreSettings.Controls.Add(this.cbGenreColoring);
      this.gbGenreSettings.Location = new System.Drawing.Point(6, 6);
      this.gbGenreSettings.Name = "gbGenreSettings";
      this.gbGenreSettings.Size = new System.Drawing.Size(432, 117);
      this.gbGenreSettings.TabIndex = 0;
      this.gbGenreSettings.TabStop = false;
      this.gbGenreSettings.Text = "Program color settings";
      // 
      // cbColoredGuide
      // 
      this.cbColoredGuide.AutoSize = true;
      this.cbColoredGuide.Location = new System.Drawing.Point(10, 21);
      this.cbColoredGuide.Name = "cbColoredGuide";
      this.cbColoredGuide.Size = new System.Drawing.Size(247, 17);
      this.cbColoredGuide.TabIndex = 3;
      this.cbColoredGuide.Text = "Enable guide coloring (set colors on Colors tab)";
      this.cbColoredGuide.UseVisualStyleBackColor = true;
      this.cbColoredGuide.CheckedChanged += new System.EventHandler(this.cbColoredGuide_CheckedChanged);
      // 
      // cbBorderHighlight
      // 
      this.cbBorderHighlight.AutoSize = true;
      this.cbBorderHighlight.Location = new System.Drawing.Point(10, 90);
      this.cbBorderHighlight.Name = "cbBorderHighlight";
      this.cbBorderHighlight.Size = new System.Drawing.Size(201, 17);
      this.cbBorderHighlight.TabIndex = 2;
      this.cbBorderHighlight.Text = "Border highlight the selected program";
      this.cbBorderHighlight.UseVisualStyleBackColor = true;
      // 
      // cbGenreColorKey
      // 
      this.cbGenreColorKey.AutoSize = true;
      this.cbGenreColorKey.Location = new System.Drawing.Point(33, 67);
      this.cbGenreColorKey.Name = "cbGenreColorKey";
      this.cbGenreColorKey.Size = new System.Drawing.Size(136, 17);
      this.cbGenreColorKey.TabIndex = 1;
      this.cbGenreColorKey.Text = "Display genre color key";
      this.cbGenreColorKey.UseVisualStyleBackColor = true;
      // 
      // cbGenreColoring
      // 
      this.cbGenreColoring.AutoSize = true;
      this.cbGenreColoring.Location = new System.Drawing.Point(22, 44);
      this.cbGenreColoring.Name = "cbGenreColoring";
      this.cbGenreColoring.Size = new System.Drawing.Size(170, 17);
      this.cbGenreColoring.TabIndex = 0;
      this.cbGenreColoring.Text = "Enable program genre coloring";
      this.cbGenreColoring.UseVisualStyleBackColor = true;
      this.cbGenreColoring.CheckedChanged += new System.EventHandler(this.cbGenreColoring_CheckedChanged);
      // 
      // tabPageTvGuideColors
      // 
      this.tabPageTvGuideColors.Controls.Add(this.groupGenreColors);
      this.tabPageTvGuideColors.Controls.Add(this.groupGroupColor);
      this.tabPageTvGuideColors.Controls.Add(this.groupChannelColors);
      this.tabPageTvGuideColors.Controls.Add(this.groupDefaultColors);
      this.tabPageTvGuideColors.Location = new System.Drawing.Point(4, 22);
      this.tabPageTvGuideColors.Name = "tabPageTvGuideColors";
      this.tabPageTvGuideColors.Size = new System.Drawing.Size(444, 415);
      this.tabPageTvGuideColors.TabIndex = 1;
      this.tabPageTvGuideColors.Text = "Colors";
      this.tabPageTvGuideColors.UseVisualStyleBackColor = true;
      // 
      // groupGenreColors
      // 
      this.groupGenreColors.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.groupGenreColors.Controls.Add(this.labelNoConnectionToServer);
      this.groupGenreColors.Controls.Add(this.listViewGuideGenres);
      this.groupGenreColors.Controls.Add(this.mpButtonOnLaterColor);
      this.groupGenreColors.Controls.Add(this.mpButtonOnNowColor);
      this.groupGenreColors.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.groupGenreColors.Location = new System.Drawing.Point(6, 3);
      this.groupGenreColors.Name = "groupGenreColors";
      this.groupGenreColors.Size = new System.Drawing.Size(432, 178);
      this.groupGenreColors.TabIndex = 0;
      this.groupGenreColors.TabStop = false;
      this.groupGenreColors.Text = "Program genre colors";
      // 
      // labelNoConnectionToServer
      // 
      this.labelNoConnectionToServer.AutoSize = true;
      this.labelNoConnectionToServer.Location = new System.Drawing.Point(15, 53);
      this.labelNoConnectionToServer.Name = "labelNoConnectionToServer";
      this.labelNoConnectionToServer.Size = new System.Drawing.Size(320, 13);
      this.labelNoConnectionToServer.TabIndex = 15;
      this.labelNoConnectionToServer.Text = "The program genre colors could not be loaded from the TV Server.";
      // 
      // listViewGuideGenres
      // 
      this.listViewGuideGenres.AllowDrop = true;
      this.listViewGuideGenres.AllowRowReorder = true;
      this.listViewGuideGenres.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom) 
            | System.Windows.Forms.AnchorStyles.Left)));
      this.listViewGuideGenres.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader9,
            this.columnHeader1,
            this.columnHeader2});
      this.listViewGuideGenres.HideSelection = false;
      this.listViewGuideGenres.Location = new System.Drawing.Point(6, 19);
      this.listViewGuideGenres.Name = "listViewGuideGenres";
      this.listViewGuideGenres.Size = new System.Drawing.Size(420, 123);
      this.listViewGuideGenres.Sorting = System.Windows.Forms.SortOrder.Ascending;
      this.listViewGuideGenres.TabIndex = 14;
      this.listViewGuideGenres.UseCompatibleStateImageBehavior = false;
      this.listViewGuideGenres.View = System.Windows.Forms.View.Details;
      // 
      // columnHeader9
      // 
      this.columnHeader9.Text = "MediaPortal Genre";
      this.columnHeader9.Width = 190;
      // 
      // columnHeader1
      // 
      this.columnHeader1.Text = "On Now Color";
      this.columnHeader1.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
      this.columnHeader1.Width = 100;
      // 
      // columnHeader2
      // 
      this.columnHeader2.Text = "On Later Color";
      this.columnHeader2.TextAlign = System.Windows.Forms.HorizontalAlignment.Center;
      this.columnHeader2.Width = 100;
      // 
      // mpButtonOnLaterColor
      // 
      this.mpButtonOnLaterColor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
      this.mpButtonOnLaterColor.Location = new System.Drawing.Point(102, 150);
      this.mpButtonOnLaterColor.Name = "mpButtonOnLaterColor";
      this.mpButtonOnLaterColor.Size = new System.Drawing.Size(90, 22);
      this.mpButtonOnLaterColor.TabIndex = 11;
      this.mpButtonOnLaterColor.Text = "On Later Color";
      this.mpButtonOnLaterColor.UseVisualStyleBackColor = true;
      this.mpButtonOnLaterColor.Click += new System.EventHandler(this.mpButtonOnLaterColor_Click);
      // 
      // mpButtonOnNowColor
      // 
      this.mpButtonOnNowColor.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
      this.mpButtonOnNowColor.Location = new System.Drawing.Point(6, 150);
      this.mpButtonOnNowColor.Name = "mpButtonOnNowColor";
      this.mpButtonOnNowColor.Size = new System.Drawing.Size(90, 22);
      this.mpButtonOnNowColor.TabIndex = 10;
      this.mpButtonOnNowColor.Text = "On Now Color";
      this.mpButtonOnNowColor.UseVisualStyleBackColor = true;
      this.mpButtonOnNowColor.Click += new System.EventHandler(this.mpButtonOnNowColor_Click);
      // 
      // groupGroupColor
      // 
      this.groupGroupColor.Controls.Add(this.mpLabel11);
      this.groupGroupColor.Controls.Add(this.colorComboBoxGroupSel);
      this.groupGroupColor.Controls.Add(this.mpLabel12);
      this.groupGroupColor.Controls.Add(this.colorComboBoxGroup);
      this.groupGroupColor.Location = new System.Drawing.Point(6, 359);
      this.groupGroupColor.Name = "groupGroupColor";
      this.groupGroupColor.Size = new System.Drawing.Size(432, 50);
      this.groupGroupColor.TabIndex = 12;
      this.groupGroupColor.TabStop = false;
      this.groupGroupColor.Text = "Channel group select colors";
      // 
      // mpLabel11
      // 
      this.mpLabel11.AutoSize = true;
      this.mpLabel11.Location = new System.Drawing.Point(214, 22);
      this.mpLabel11.Name = "mpLabel11";
      this.mpLabel11.Size = new System.Drawing.Size(52, 13);
      this.mpLabel11.TabIndex = 11;
      this.mpLabel11.Text = "Selected:";
      // 
      // colorComboBoxGroupSel
      // 
      this.colorComboBoxGroupSel.Extended = false;
      this.colorComboBoxGroupSel.Location = new System.Drawing.Point(274, 17);
      this.colorComboBoxGroupSel.Name = "colorComboBoxGroupSel";
      this.colorComboBoxGroupSel.SelectedColor = System.Drawing.Color.Black;
      this.colorComboBoxGroupSel.Size = new System.Drawing.Size(103, 23);
      this.colorComboBoxGroupSel.TabIndex = 10;
      this.colorComboBoxGroupSel.ColorChanged += new MediaPortal.WinCustomControls.ColorChangedHandler(this.OnGroupSelColorChanged);
      this.colorComboBoxGroupSel.Load += new System.EventHandler(this.colorComboBoxGroupSel_Load);
      // 
      // mpLabel12
      // 
      this.mpLabel12.AutoSize = true;
      this.mpLabel12.Location = new System.Drawing.Point(45, 22);
      this.mpLabel12.Name = "mpLabel12";
      this.mpLabel12.Size = new System.Drawing.Size(43, 13);
      this.mpLabel12.TabIndex = 9;
      this.mpLabel12.Text = "Normal:";
      // 
      // colorComboBoxGroup
      // 
      this.colorComboBoxGroup.Extended = false;
      this.colorComboBoxGroup.Location = new System.Drawing.Point(97, 17);
      this.colorComboBoxGroup.Name = "colorComboBoxGroup";
      this.colorComboBoxGroup.SelectedColor = System.Drawing.Color.Black;
      this.colorComboBoxGroup.Size = new System.Drawing.Size(103, 23);
      this.colorComboBoxGroup.TabIndex = 0;
      this.colorComboBoxGroup.ColorChanged += new MediaPortal.WinCustomControls.ColorChangedHandler(this.OnGroupColorChanged);
      this.colorComboBoxGroup.Load += new System.EventHandler(this.colorComboBoxGroup_Load);
      // 
      // groupChannelColors
      // 
      this.groupChannelColors.Controls.Add(this.mpLabel9);
      this.groupChannelColors.Controls.Add(this.colorComboBoxChannelSel);
      this.groupChannelColors.Controls.Add(this.mpLabel10);
      this.groupChannelColors.Controls.Add(this.colorComboBoxChannel);
      this.groupChannelColors.Location = new System.Drawing.Point(6, 303);
      this.groupChannelColors.Name = "groupChannelColors";
      this.groupChannelColors.Size = new System.Drawing.Size(432, 50);
      this.groupChannelColors.TabIndex = 12;
      this.groupChannelColors.TabStop = false;
      this.groupChannelColors.Text = "Channel colors";
      // 
      // mpLabel9
      // 
      this.mpLabel9.AutoSize = true;
      this.mpLabel9.Location = new System.Drawing.Point(214, 22);
      this.mpLabel9.Name = "mpLabel9";
      this.mpLabel9.Size = new System.Drawing.Size(52, 13);
      this.mpLabel9.TabIndex = 11;
      this.mpLabel9.Text = "Selected:";
      // 
      // colorComboBoxChannelSel
      // 
      this.colorComboBoxChannelSel.Extended = false;
      this.colorComboBoxChannelSel.Location = new System.Drawing.Point(274, 17);
      this.colorComboBoxChannelSel.Name = "colorComboBoxChannelSel";
      this.colorComboBoxChannelSel.SelectedColor = System.Drawing.Color.Black;
      this.colorComboBoxChannelSel.Size = new System.Drawing.Size(103, 23);
      this.colorComboBoxChannelSel.TabIndex = 10;
      this.colorComboBoxChannelSel.ColorChanged += new MediaPortal.WinCustomControls.ColorChangedHandler(this.OnChannelSelColorChanged);
      this.colorComboBoxChannelSel.Load += new System.EventHandler(this.colorComboBoxChannelSel_Load);
      // 
      // mpLabel10
      // 
      this.mpLabel10.AutoSize = true;
      this.mpLabel10.Location = new System.Drawing.Point(45, 22);
      this.mpLabel10.Name = "mpLabel10";
      this.mpLabel10.Size = new System.Drawing.Size(43, 13);
      this.mpLabel10.TabIndex = 9;
      this.mpLabel10.Text = "Normal:";
      // 
      // colorComboBoxChannel
      // 
      this.colorComboBoxChannel.Extended = false;
      this.colorComboBoxChannel.Location = new System.Drawing.Point(97, 17);
      this.colorComboBoxChannel.Name = "colorComboBoxChannel";
      this.colorComboBoxChannel.SelectedColor = System.Drawing.Color.Black;
      this.colorComboBoxChannel.Size = new System.Drawing.Size(103, 23);
      this.colorComboBoxChannel.TabIndex = 0;
      this.colorComboBoxChannel.ColorChanged += new MediaPortal.WinCustomControls.ColorChangedHandler(this.OnChannelColorChanged);
      this.colorComboBoxChannel.Load += new System.EventHandler(this.colorComboBoxChannel_Load);
      // 
      // groupDefaultColors
      // 
      this.groupDefaultColors.Controls.Add(this.mpLabel14);
      this.groupDefaultColors.Controls.Add(this.colorComboBoxPgmOnLater);
      this.groupDefaultColors.Controls.Add(this.mpLabel15);
      this.groupDefaultColors.Controls.Add(this.colorComboBoxPgmOnNow);
      this.groupDefaultColors.Controls.Add(this.mpLabel13);
      this.groupDefaultColors.Controls.Add(this.colorComboBoxPgmBorder);
      this.groupDefaultColors.Controls.Add(this.mpLabel8);
      this.groupDefaultColors.Controls.Add(this.colorComboBoxPgmSel);
      this.groupDefaultColors.Controls.Add(this.mpLabel4);
      this.groupDefaultColors.Controls.Add(this.colorComboBoxPgmEnded);
      this.groupDefaultColors.Location = new System.Drawing.Point(6, 187);
      this.groupDefaultColors.Name = "groupDefaultColors";
      this.groupDefaultColors.Size = new System.Drawing.Size(432, 110);
      this.groupDefaultColors.TabIndex = 0;
      this.groupDefaultColors.TabStop = false;
      this.groupDefaultColors.Text = "Program default colors";
      // 
      // mpLabel14
      // 
      this.mpLabel14.AutoSize = true;
      this.mpLabel14.Location = new System.Drawing.Point(219, 25);
      this.mpLabel14.Name = "mpLabel14";
      this.mpLabel14.Size = new System.Drawing.Size(47, 13);
      this.mpLabel14.TabIndex = 17;
      this.mpLabel14.Text = "On later:";
      // 
      // colorComboBoxPgmOnLater
      // 
      this.colorComboBoxPgmOnLater.Extended = false;
      this.colorComboBoxPgmOnLater.Location = new System.Drawing.Point(274, 20);
      this.colorComboBoxPgmOnLater.Name = "colorComboBoxPgmOnLater";
      this.colorComboBoxPgmOnLater.SelectedColor = System.Drawing.Color.Black;
      this.colorComboBoxPgmOnLater.Size = new System.Drawing.Size(103, 23);
      this.colorComboBoxPgmOnLater.TabIndex = 16;
      this.colorComboBoxPgmOnLater.ColorChanged += new MediaPortal.WinCustomControls.ColorChangedHandler(this.OnPgmOnLaterColorChanged);
      this.colorComboBoxPgmOnLater.Load += new System.EventHandler(this.colorComboBoxPgmOnLater_Load);
      // 
      // mpLabel15
      // 
      this.mpLabel15.AutoSize = true;
      this.mpLabel15.Location = new System.Drawing.Point(41, 25);
      this.mpLabel15.Name = "mpLabel15";
      this.mpLabel15.Size = new System.Drawing.Size(47, 13);
      this.mpLabel15.TabIndex = 15;
      this.mpLabel15.Text = "On now:";
      // 
      // colorComboBoxPgmOnNow
      // 
      this.colorComboBoxPgmOnNow.Extended = false;
      this.colorComboBoxPgmOnNow.Location = new System.Drawing.Point(97, 20);
      this.colorComboBoxPgmOnNow.Name = "colorComboBoxPgmOnNow";
      this.colorComboBoxPgmOnNow.SelectedColor = System.Drawing.Color.Black;
      this.colorComboBoxPgmOnNow.Size = new System.Drawing.Size(103, 23);
      this.colorComboBoxPgmOnNow.TabIndex = 14;
      this.colorComboBoxPgmOnNow.ColorChanged += new MediaPortal.WinCustomControls.ColorChangedHandler(this.OnPgmOnNowColorChanged);
      this.colorComboBoxPgmOnNow.Load += new System.EventHandler(this.colorComboBoxPgmOnNow_Load);
      // 
      // mpLabel13
      // 
      this.mpLabel13.AutoSize = true;
      this.mpLabel13.Location = new System.Drawing.Point(5, 83);
      this.mpLabel13.Name = "mpLabel13";
      this.mpLabel13.Size = new System.Drawing.Size(83, 13);
      this.mpLabel13.TabIndex = 13;
      this.mpLabel13.Text = "Border highlight:";
      // 
      // colorComboBoxPgmBorder
      // 
      this.colorComboBoxPgmBorder.Extended = false;
      this.colorComboBoxPgmBorder.Location = new System.Drawing.Point(97, 78);
      this.colorComboBoxPgmBorder.Name = "colorComboBoxPgmBorder";
      this.colorComboBoxPgmBorder.SelectedColor = System.Drawing.Color.Black;
      this.colorComboBoxPgmBorder.Size = new System.Drawing.Size(103, 23);
      this.colorComboBoxPgmBorder.TabIndex = 12;
      this.colorComboBoxPgmBorder.ColorChanged += new MediaPortal.WinCustomControls.ColorChangedHandler(this.OnPgmBorderColorChanged);
      this.colorComboBoxPgmBorder.Load += new System.EventHandler(this.colorComboBoxPgmBorder_Load);
      // 
      // mpLabel8
      // 
      this.mpLabel8.AutoSize = true;
      this.mpLabel8.Location = new System.Drawing.Point(214, 54);
      this.mpLabel8.Name = "mpLabel8";
      this.mpLabel8.Size = new System.Drawing.Size(52, 13);
      this.mpLabel8.TabIndex = 11;
      this.mpLabel8.Text = "Selected:";
      // 
      // colorComboBoxPgmSel
      // 
      this.colorComboBoxPgmSel.Extended = false;
      this.colorComboBoxPgmSel.Location = new System.Drawing.Point(274, 49);
      this.colorComboBoxPgmSel.Name = "colorComboBoxPgmSel";
      this.colorComboBoxPgmSel.SelectedColor = System.Drawing.Color.Black;
      this.colorComboBoxPgmSel.Size = new System.Drawing.Size(103, 23);
      this.colorComboBoxPgmSel.TabIndex = 10;
      this.colorComboBoxPgmSel.ColorChanged += new MediaPortal.WinCustomControls.ColorChangedHandler(this.OnPgmSelColorChanged);
      this.colorComboBoxPgmSel.Load += new System.EventHandler(this.colorComboBoxPgmSel_Load);
      // 
      // mpLabel4
      // 
      this.mpLabel4.AutoSize = true;
      this.mpLabel4.Location = new System.Drawing.Point(47, 54);
      this.mpLabel4.Name = "mpLabel4";
      this.mpLabel4.Size = new System.Drawing.Size(41, 13);
      this.mpLabel4.TabIndex = 9;
      this.mpLabel4.Text = "Ended:";
      // 
      // colorComboBoxPgmEnded
      // 
      this.colorComboBoxPgmEnded.Extended = false;
      this.colorComboBoxPgmEnded.Location = new System.Drawing.Point(97, 49);
      this.colorComboBoxPgmEnded.Name = "colorComboBoxPgmEnded";
      this.colorComboBoxPgmEnded.SelectedColor = System.Drawing.Color.Black;
      this.colorComboBoxPgmEnded.Size = new System.Drawing.Size(103, 23);
      this.colorComboBoxPgmEnded.TabIndex = 0;
      this.colorComboBoxPgmEnded.ColorChanged += new MediaPortal.WinCustomControls.ColorChangedHandler(this.OnPgmEndedColorChanged);
      this.colorComboBoxPgmEnded.Load += new System.EventHandler(this.colorComboBoxPgmEnded_Load);
      // 
      // mpButtonOk
      // 
      this.mpButtonOk.Location = new System.Drawing.Point(327, 537);
      this.mpButtonOk.Name = "mpButtonOk";
      this.mpButtonOk.Size = new System.Drawing.Size(75, 23);
      this.mpButtonOk.TabIndex = 13;
      this.mpButtonOk.Text = "OK";
      this.mpButtonOk.UseVisualStyleBackColor = true;
      this.mpButtonOk.Click += new System.EventHandler(this.mpButtonOk_Click);
      // 
      // mpButtonCancel
      // 
      this.mpButtonCancel.Location = new System.Drawing.Point(410, 537);
      this.mpButtonCancel.Name = "mpButtonCancel";
      this.mpButtonCancel.Size = new System.Drawing.Size(75, 23);
      this.mpButtonCancel.TabIndex = 14;
      this.mpButtonCancel.Text = "Cancel";
      this.mpButtonCancel.UseVisualStyleBackColor = true;
      this.mpButtonCancel.Click += new System.EventHandler(this.mpButtonCancel_Click);
      // 
      // beveledLine1
      // 
      this.beveledLine1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.beveledLine1.Location = new System.Drawing.Point(9, 527);
      this.beveledLine1.Name = "beveledLine1";
      this.beveledLine1.Size = new System.Drawing.Size(488, 2);
      this.beveledLine1.TabIndex = 18;
      this.beveledLine1.TabStop = false;
      // 
      // headerLabel
      // 
      this.headerLabel.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.headerLabel.Caption = "";
      this.headerLabel.FirstColor = System.Drawing.SystemColors.InactiveCaption;
      this.headerLabel.Font = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
      this.headerLabel.LastColor = System.Drawing.Color.WhiteSmoke;
      this.headerLabel.Location = new System.Drawing.Point(17, 3);
      this.headerLabel.Name = "headerLabel";
      this.headerLabel.PaddingLeft = 2;
      this.headerLabel.Size = new System.Drawing.Size(472, 24);
      this.headerLabel.TabIndex = 19;
      this.headerLabel.TabStop = false;
      this.headerLabel.TextColor = System.Drawing.Color.WhiteSmoke;
      this.headerLabel.TextFont = new System.Drawing.Font("Verdana", 14.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
      // 
      // DlgSkinSettings
      // 
      this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
      this.ClientSize = new System.Drawing.Size(506, 570);
      this.Controls.Add(this.headerLabel);
      this.Controls.Add(this.beveledLine1);
      this.Controls.Add(this.mpButtonCancel);
      this.Controls.Add(this.mpButtonOk);
      this.Controls.Add(this.tabControlSkinSettings);
      this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.FixedDialog;
      this.Name = "DlgSkinSettings";
      this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
      this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
      this.Text = "MediaPortal Skin Settings";
      this.tabControlSkinSettings.ResumeLayout(false);
      this.tabPageGeneral.ResumeLayout(false);
      this.groupBoxTheme.ResumeLayout(false);
      this.panelFitImage.ResumeLayout(false);
      ((System.ComponentModel.ISupportInitialize)(this.previewPictureBox)).EndInit();
      this.tabPageTVGuideSettings.ResumeLayout(false);
      this.tabControlTvGuideSettings.ResumeLayout(false);
      this.tabPageTvGuideGeneral.ResumeLayout(false);
      this.tabPageTvGuideGeneral.PerformLayout();
      this.gbGenreSettings.ResumeLayout(false);
      this.gbGenreSettings.PerformLayout();
      this.tabPageTvGuideColors.ResumeLayout(false);
      this.groupGenreColors.ResumeLayout(false);
      this.groupGenreColors.PerformLayout();
      this.groupGroupColor.ResumeLayout(false);
      this.groupGroupColor.PerformLayout();
      this.groupChannelColors.ResumeLayout(false);
      this.groupChannelColors.PerformLayout();
      this.groupDefaultColors.ResumeLayout(false);
      this.groupDefaultColors.PerformLayout();
      this.ResumeLayout(false);

    }
コード例 #7
0
ファイル: TV.cs プロジェクト: splatterpop/MediaPortal-1
    private void InitializeComponent()
    {
      this.mpGroupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.enableAudioDualMonoModes = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpCheckBoxPrefAudioOverLang = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpCheckBoxPrefAC3 = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.tabControlTVGeneral = new MediaPortal.UserInterface.Controls.MPTabControl();
      this.tabPageGeneralSettings = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.mpGroupBoxAdditional = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.cbDeinterlace = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.label8 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.groupBox5 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.cbAutoFullscreen = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.cbTurnOnTv = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.groupBox3 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.byIndexCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.showChannelNumberCheckBox = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.channelNumberMaxLengthNumUpDn = new MediaPortal.UserInterface.Controls.MPNumericUpDown();
      this.lblChanNumMaxLen = new MediaPortal.UserInterface.Controls.MPLabel();
      this.grpTsReader = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.cbRelaxTsReader = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpGroupBox6 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.cbContinuousScrollGuide = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.cbShowChannelStateIcons = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.labelShowEpisodeinfo = new MediaPortal.UserInterface.Controls.MPLabel();
      this.comboboxShowEpisodeInfo = new MediaPortal.UserInterface.Controls.MPComboBox();
      this.mpGroupBox5 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.cbHideAllChannels = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.tabPageAudioLanguages = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.groupBox2 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.mpLabel5 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpLabel1 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpButtonDownAudioLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpButtonUpAudioLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpButtonAddAudioLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpButtonRemoveAudioLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpListViewPreferredAudioLang = new MediaPortal.UserInterface.Controls.MPListView();
      this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader6 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.mpListViewAvailAudioLang = new MediaPortal.UserInterface.Controls.MPListView();
      this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.tabPageSubtitles = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.mpGroupBox4 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.mpCheckBoxEnableCCSub = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpCheckBoxAutoShowSubWhenTvStarts = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpCheckBoxEnableTTXTSub = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpCheckBoxEnableDVBSub = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpGroupBox3 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.mpLabel6 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpLabel7 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.mpButtonDownSubLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpButtonUpSubLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpButtonAddSubLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpButtonRemoveSubLang = new MediaPortal.UserInterface.Controls.MPButton();
      this.mpListViewPreferredSubLang = new MediaPortal.UserInterface.Controls.MPListView();
      this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader8 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.mpListViewAvailSubLang = new MediaPortal.UserInterface.Controls.MPListView();
      this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader7 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.tabPage1 = new MediaPortal.UserInterface.Controls.MPTabPage();
      this.mpGroupBox8 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.chkRecnotifications = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpGroupBox7 = new MediaPortal.UserInterface.Controls.MPGroupBox();
      this.cbConfirmTimeshiftStop = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.txtNotifyAfter = new MediaPortal.UserInterface.Controls.MPTextBox();
      this.labelNotifyTimeout = new MediaPortal.UserInterface.Controls.MPLabel();
      this.checkBoxNotifyPlaySound = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.mpLabel2 = new MediaPortal.UserInterface.Controls.MPLabel();
      this.txtNotifyBefore = new MediaPortal.UserInterface.Controls.MPTextBox();
      this.mpGroupBox1.SuspendLayout();
      this.tabControlTVGeneral.SuspendLayout();
      this.tabPageGeneralSettings.SuspendLayout();
      this.mpGroupBoxAdditional.SuspendLayout();
      this.groupBox5.SuspendLayout();
      this.groupBox3.SuspendLayout();
      ((System.ComponentModel.ISupportInitialize)(this.channelNumberMaxLengthNumUpDn)).BeginInit();
      this.grpTsReader.SuspendLayout();
      this.mpGroupBox6.SuspendLayout();
      this.mpGroupBox5.SuspendLayout();
      this.tabPageAudioLanguages.SuspendLayout();
      this.groupBox2.SuspendLayout();
      this.tabPageSubtitles.SuspendLayout();
      this.mpGroupBox4.SuspendLayout();
      this.mpGroupBox3.SuspendLayout();
      this.tabPage1.SuspendLayout();
      this.mpGroupBox8.SuspendLayout();
      this.mpGroupBox7.SuspendLayout();
      this.SuspendLayout();
      // 
      // mpGroupBox1
      // 
      this.mpGroupBox1.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.mpGroupBox1.Controls.Add(this.enableAudioDualMonoModes);
      this.mpGroupBox1.Controls.Add(this.mpCheckBoxPrefAudioOverLang);
      this.mpGroupBox1.Controls.Add(this.mpCheckBoxPrefAC3);
      this.mpGroupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox1.Location = new System.Drawing.Point(16, 308);
      this.mpGroupBox1.Name = "mpGroupBox1";
      this.mpGroupBox1.Size = new System.Drawing.Size(432, 91);
      this.mpGroupBox1.TabIndex = 9;
      this.mpGroupBox1.TabStop = false;
      this.mpGroupBox1.Text = "Audio stream settings";
      // 
      // enableAudioDualMonoModes
      // 
      this.enableAudioDualMonoModes.AutoSize = true;
      this.enableAudioDualMonoModes.CheckAlign = System.Drawing.ContentAlignment.TopLeft;
      this.enableAudioDualMonoModes.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.enableAudioDualMonoModes.Location = new System.Drawing.Point(8, 51);
      this.enableAudioDualMonoModes.Name = "enableAudioDualMonoModes";
      this.enableAudioDualMonoModes.Size = new System.Drawing.Size(386, 30);
      this.enableAudioDualMonoModes.TabIndex = 12;
      this.enableAudioDualMonoModes.Text = "Enable AudioDualMono mode switching\r\n(if 1 audio stream contains 2x mono channels" +
          ", you can switch between them)";
      this.enableAudioDualMonoModes.UseVisualStyleBackColor = true;
      // 
      // mpCheckBoxPrefAudioOverLang
      // 
      this.mpCheckBoxPrefAudioOverLang.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
      this.mpCheckBoxPrefAudioOverLang.AutoSize = true;
      this.mpCheckBoxPrefAudioOverLang.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxPrefAudioOverLang.Location = new System.Drawing.Point(238, 28);
      this.mpCheckBoxPrefAudioOverLang.Name = "mpCheckBoxPrefAudioOverLang";
      this.mpCheckBoxPrefAudioOverLang.Size = new System.Drawing.Size(172, 17);
      this.mpCheckBoxPrefAudioOverLang.TabIndex = 11;
      this.mpCheckBoxPrefAudioOverLang.Text = "Prefer audiotype over language";
      this.mpCheckBoxPrefAudioOverLang.UseVisualStyleBackColor = false;
      // 
      // mpCheckBoxPrefAC3
      // 
      this.mpCheckBoxPrefAC3.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
      this.mpCheckBoxPrefAC3.AutoSize = true;
      this.mpCheckBoxPrefAC3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxPrefAC3.Location = new System.Drawing.Point(8, 28);
      this.mpCheckBoxPrefAC3.Name = "mpCheckBoxPrefAC3";
      this.mpCheckBoxPrefAC3.Size = new System.Drawing.Size(110, 17);
      this.mpCheckBoxPrefAC3.TabIndex = 7;
      this.mpCheckBoxPrefAC3.Text = "Prefer AC-3 sound";
      this.mpCheckBoxPrefAC3.UseVisualStyleBackColor = false;
      // 
      // tabControlTVGeneral
      // 
      this.tabControlTVGeneral.Controls.Add(this.tabPageGeneralSettings);
      this.tabControlTVGeneral.Controls.Add(this.tabPageAudioLanguages);
      this.tabControlTVGeneral.Controls.Add(this.tabPageSubtitles);
      this.tabControlTVGeneral.Controls.Add(this.tabPage1);
      this.tabControlTVGeneral.Location = new System.Drawing.Point(0, 2);
      this.tabControlTVGeneral.Name = "tabControlTVGeneral";
      this.tabControlTVGeneral.SelectedIndex = 0;
      this.tabControlTVGeneral.Size = new System.Drawing.Size(472, 445);
      this.tabControlTVGeneral.TabIndex = 11;
      // 
      // tabPageGeneralSettings
      // 
      this.tabPageGeneralSettings.Controls.Add(this.mpGroupBoxAdditional);
      this.tabPageGeneralSettings.Controls.Add(this.groupBox5);
      this.tabPageGeneralSettings.Controls.Add(this.groupBox3);
      this.tabPageGeneralSettings.Controls.Add(this.grpTsReader);
      this.tabPageGeneralSettings.Controls.Add(this.mpGroupBox6);
      this.tabPageGeneralSettings.Controls.Add(this.mpGroupBox5);
      this.tabPageGeneralSettings.Location = new System.Drawing.Point(4, 22);
      this.tabPageGeneralSettings.Name = "tabPageGeneralSettings";
      this.tabPageGeneralSettings.Padding = new System.Windows.Forms.Padding(3);
      this.tabPageGeneralSettings.Size = new System.Drawing.Size(464, 419);
      this.tabPageGeneralSettings.TabIndex = 0;
      this.tabPageGeneralSettings.Text = "General settings";
      this.tabPageGeneralSettings.UseVisualStyleBackColor = true;
      // 
      // mpGroupBoxAdditional
      // 
      this.mpGroupBoxAdditional.Controls.Add(this.cbDeinterlace);
      this.mpGroupBoxAdditional.Controls.Add(this.label8);
      this.mpGroupBoxAdditional.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBoxAdditional.Location = new System.Drawing.Point(16, 322);
      this.mpGroupBoxAdditional.Name = "mpGroupBoxAdditional";
      this.mpGroupBoxAdditional.Size = new System.Drawing.Size(431, 63);
      this.mpGroupBoxAdditional.TabIndex = 19;
      this.mpGroupBoxAdditional.TabStop = false;
      this.mpGroupBoxAdditional.Text = "Additional settings";
      // 
      // cbDeinterlace
      // 
      this.cbDeinterlace.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.cbDeinterlace.BorderColor = System.Drawing.Color.Empty;
      this.cbDeinterlace.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.cbDeinterlace.Items.AddRange(new object[] {
            "None",
            "Bob",
            "Weave",
            "Best"});
      this.cbDeinterlace.Location = new System.Drawing.Point(166, 19);
      this.cbDeinterlace.Name = "cbDeinterlace";
      this.cbDeinterlace.Size = new System.Drawing.Size(259, 21);
      this.cbDeinterlace.TabIndex = 0;
      // 
      // label8
      // 
      this.label8.Location = new System.Drawing.Point(6, 23);
      this.label8.Name = "label8";
      this.label8.Size = new System.Drawing.Size(146, 17);
      this.label8.TabIndex = 14;
      this.label8.Text = "Fallback de-interlace mode:";
      // 
      // groupBox5
      // 
      this.groupBox5.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.groupBox5.Controls.Add(this.cbAutoFullscreen);
      this.groupBox5.Controls.Add(this.cbTurnOnTv);
      this.groupBox5.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.groupBox5.Location = new System.Drawing.Point(258, 169);
      this.groupBox5.Name = "groupBox5";
      this.groupBox5.Size = new System.Drawing.Size(189, 94);
      this.groupBox5.TabIndex = 18;
      this.groupBox5.TabStop = false;
      this.groupBox5.Text = "When entering the TV screen:";
      // 
      // cbAutoFullscreen
      // 
      this.cbAutoFullscreen.AutoSize = true;
      this.cbAutoFullscreen.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.cbAutoFullscreen.Location = new System.Drawing.Point(17, 40);
      this.cbAutoFullscreen.Name = "cbAutoFullscreen";
      this.cbAutoFullscreen.Size = new System.Drawing.Size(152, 17);
      this.cbAutoFullscreen.TabIndex = 1;
      this.cbAutoFullscreen.Text = "Directly show fullscreen TV";
      this.cbAutoFullscreen.UseVisualStyleBackColor = true;
      this.cbAutoFullscreen.CheckedChanged += new System.EventHandler(this.cbAutoFullscreen_CheckedChanged);
      // 
      // cbTurnOnTv
      // 
      this.cbTurnOnTv.AutoSize = true;
      this.cbTurnOnTv.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.cbTurnOnTv.Location = new System.Drawing.Point(17, 20);
      this.cbTurnOnTv.Name = "cbTurnOnTv";
      this.cbTurnOnTv.Size = new System.Drawing.Size(78, 17);
      this.cbTurnOnTv.TabIndex = 0;
      this.cbTurnOnTv.Text = "Turn on TV";
      this.cbTurnOnTv.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(16, 169);
      this.groupBox3.Name = "groupBox3";
      this.groupBox3.Size = new System.Drawing.Size(233, 94);
      this.groupBox3.TabIndex = 17;
      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 = 2;
      this.channelNumberMaxLengthNumUpDn.Value = new decimal(new int[] {
            3,
            0,
            0,
            0});
      // 
      // lblChanNumMaxLen
      // 
      this.lblChanNumMaxLen.AutoSize = true;
      this.lblChanNumMaxLen.Location = new System.Drawing.Point(31, 62);
      this.lblChanNumMaxLen.Name = "lblChanNumMaxLen";
      this.lblChanNumMaxLen.Size = new System.Drawing.Size(141, 13);
      this.lblChanNumMaxLen.TabIndex = 2;
      this.lblChanNumMaxLen.Text = "Channel number max. length";
      // 
      // grpTsReader
      // 
      this.grpTsReader.Controls.Add(this.cbRelaxTsReader);
      this.grpTsReader.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.grpTsReader.Location = new System.Drawing.Point(16, 269);
      this.grpTsReader.Name = "grpTsReader";
      this.grpTsReader.Size = new System.Drawing.Size(431, 47);
      this.grpTsReader.TabIndex = 12;
      this.grpTsReader.TabStop = false;
      this.grpTsReader.Text = "TsReader options";
      // 
      // cbRelaxTsReader
      // 
      this.cbRelaxTsReader.AutoSize = true;
      this.cbRelaxTsReader.Checked = true;
      this.cbRelaxTsReader.CheckState = System.Windows.Forms.CheckState.Checked;
      this.cbRelaxTsReader.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.cbRelaxTsReader.Location = new System.Drawing.Point(22, 19);
      this.cbRelaxTsReader.Name = "cbRelaxTsReader";
      this.cbRelaxTsReader.Size = new System.Drawing.Size(347, 17);
      this.cbRelaxTsReader.TabIndex = 0;
      this.cbRelaxTsReader.Text = "Don\'t drop discontinued packets in TsReader (can reduce stuttering)";
      this.cbRelaxTsReader.UseVisualStyleBackColor = true;
      // 
      // mpGroupBox6
      // 
      this.mpGroupBox6.Controls.Add(this.cbContinuousScrollGuide);
      this.mpGroupBox6.Controls.Add(this.cbShowChannelStateIcons);
      this.mpGroupBox6.Controls.Add(this.labelShowEpisodeinfo);
      this.mpGroupBox6.Controls.Add(this.comboboxShowEpisodeInfo);
      this.mpGroupBox6.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox6.Location = new System.Drawing.Point(16, 67);
      this.mpGroupBox6.Name = "mpGroupBox6";
      this.mpGroupBox6.Size = new System.Drawing.Size(431, 96);
      this.mpGroupBox6.TabIndex = 12;
      this.mpGroupBox6.TabStop = false;
      this.mpGroupBox6.Text = "Guide";
      // 
      // cbContinuousScrollGuide
      // 
      this.cbContinuousScrollGuide.AutoSize = true;
      this.cbContinuousScrollGuide.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.cbContinuousScrollGuide.Location = new System.Drawing.Point(22, 40);
      this.cbContinuousScrollGuide.Name = "cbContinuousScrollGuide";
      this.cbContinuousScrollGuide.Size = new System.Drawing.Size(210, 17);
      this.cbContinuousScrollGuide.TabIndex = 1;
      this.cbContinuousScrollGuide.Text = "Loop guide seamlessly (top and bottom)";
      this.cbContinuousScrollGuide.UseVisualStyleBackColor = true;
      // 
      // cbShowChannelStateIcons
      // 
      this.cbShowChannelStateIcons.AutoSize = true;
      this.cbShowChannelStateIcons.Checked = true;
      this.cbShowChannelStateIcons.CheckState = System.Windows.Forms.CheckState.Checked;
      this.cbShowChannelStateIcons.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.cbShowChannelStateIcons.Location = new System.Drawing.Point(22, 19);
      this.cbShowChannelStateIcons.Name = "cbShowChannelStateIcons";
      this.cbShowChannelStateIcons.Size = new System.Drawing.Size(308, 17);
      this.cbShowChannelStateIcons.TabIndex = 0;
      this.cbShowChannelStateIcons.Text = "Show channel state icons in Mini Guide (on supported skins)";
      this.cbShowChannelStateIcons.UseVisualStyleBackColor = true;
      // 
      // labelShowEpisodeinfo
      // 
      this.labelShowEpisodeinfo.AutoSize = true;
      this.labelShowEpisodeinfo.Location = new System.Drawing.Point(19, 68);
      this.labelShowEpisodeinfo.Name = "labelShowEpisodeinfo";
      this.labelShowEpisodeinfo.Size = new System.Drawing.Size(97, 13);
      this.labelShowEpisodeinfo.TabIndex = 1;
      this.labelShowEpisodeinfo.Text = "Show episode info:";
      // 
      // comboboxShowEpisodeInfo
      // 
      this.comboboxShowEpisodeInfo.BorderColor = System.Drawing.Color.Empty;
      this.comboboxShowEpisodeInfo.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
      this.comboboxShowEpisodeInfo.FormattingEnabled = true;
      this.comboboxShowEpisodeInfo.Location = new System.Drawing.Point(126, 64);
      this.comboboxShowEpisodeInfo.Name = "comboboxShowEpisodeInfo";
      this.comboboxShowEpisodeInfo.Size = new System.Drawing.Size(229, 21);
      this.comboboxShowEpisodeInfo.TabIndex = 2;
      // 
      // mpGroupBox5
      // 
      this.mpGroupBox5.Controls.Add(this.cbHideAllChannels);
      this.mpGroupBox5.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox5.Location = new System.Drawing.Point(16, 16);
      this.mpGroupBox5.Name = "mpGroupBox5";
      this.mpGroupBox5.Size = new System.Drawing.Size(431, 45);
      this.mpGroupBox5.TabIndex = 11;
      this.mpGroupBox5.TabStop = false;
      this.mpGroupBox5.Text = "Group options";
      // 
      // cbHideAllChannels
      // 
      this.cbHideAllChannels.AutoSize = true;
      this.cbHideAllChannels.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.cbHideAllChannels.Location = new System.Drawing.Point(22, 19);
      this.cbHideAllChannels.Name = "cbHideAllChannels";
      this.cbHideAllChannels.Size = new System.Drawing.Size(149, 17);
      this.cbHideAllChannels.TabIndex = 0;
      this.cbHideAllChannels.Text = "Hide \"All Channels\" Group";
      this.cbHideAllChannels.UseVisualStyleBackColor = true;
      // 
      // tabPageAudioLanguages
      // 
      this.tabPageAudioLanguages.Controls.Add(this.groupBox2);
      this.tabPageAudioLanguages.Controls.Add(this.mpGroupBox1);
      this.tabPageAudioLanguages.Location = new System.Drawing.Point(4, 22);
      this.tabPageAudioLanguages.Name = "tabPageAudioLanguages";
      this.tabPageAudioLanguages.Padding = new System.Windows.Forms.Padding(3);
      this.tabPageAudioLanguages.Size = new System.Drawing.Size(464, 419);
      this.tabPageAudioLanguages.TabIndex = 3;
      this.tabPageAudioLanguages.Text = "Audio settings";
      this.tabPageAudioLanguages.UseVisualStyleBackColor = true;
      // 
      // groupBox2
      // 
      this.groupBox2.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.groupBox2.Controls.Add(this.mpLabel5);
      this.groupBox2.Controls.Add(this.mpLabel1);
      this.groupBox2.Controls.Add(this.mpButtonDownAudioLang);
      this.groupBox2.Controls.Add(this.mpButtonUpAudioLang);
      this.groupBox2.Controls.Add(this.mpButtonAddAudioLang);
      this.groupBox2.Controls.Add(this.mpButtonRemoveAudioLang);
      this.groupBox2.Controls.Add(this.mpListViewPreferredAudioLang);
      this.groupBox2.Controls.Add(this.mpListViewAvailAudioLang);
      this.groupBox2.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.groupBox2.Location = new System.Drawing.Point(16, 16);
      this.groupBox2.Name = "groupBox2";
      this.groupBox2.Size = new System.Drawing.Size(432, 284);
      this.groupBox2.TabIndex = 2;
      this.groupBox2.TabStop = false;
      this.groupBox2.Text = "Preferred audio languages";
      // 
      // mpLabel5
      // 
      this.mpLabel5.AutoSize = true;
      this.mpLabel5.Location = new System.Drawing.Point(236, 21);
      this.mpLabel5.Name = "mpLabel5";
      this.mpLabel5.Size = new System.Drawing.Size(102, 13);
      this.mpLabel5.TabIndex = 7;
      this.mpLabel5.Text = "Preferred languages";
      // 
      // mpLabel1
      // 
      this.mpLabel1.AutoSize = true;
      this.mpLabel1.Location = new System.Drawing.Point(6, 21);
      this.mpLabel1.Name = "mpLabel1";
      this.mpLabel1.Size = new System.Drawing.Size(102, 13);
      this.mpLabel1.TabIndex = 6;
      this.mpLabel1.Text = "Available languages";
      // 
      // mpButtonDownAudioLang
      // 
      this.mpButtonDownAudioLang.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
      this.mpButtonDownAudioLang.Location = new System.Drawing.Point(289, 255);
      this.mpButtonDownAudioLang.Name = "mpButtonDownAudioLang";
      this.mpButtonDownAudioLang.Size = new System.Drawing.Size(46, 20);
      this.mpButtonDownAudioLang.TabIndex = 5;
      this.mpButtonDownAudioLang.Text = "Down";
      this.mpButtonDownAudioLang.UseVisualStyleBackColor = true;
      this.mpButtonDownAudioLang.Click += new System.EventHandler(this.mpButtonDownAudioLang_Click);
      // 
      // mpButtonUpAudioLang
      // 
      this.mpButtonUpAudioLang.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
      this.mpButtonUpAudioLang.Location = new System.Drawing.Point(237, 255);
      this.mpButtonUpAudioLang.Name = "mpButtonUpAudioLang";
      this.mpButtonUpAudioLang.Size = new System.Drawing.Size(46, 20);
      this.mpButtonUpAudioLang.TabIndex = 4;
      this.mpButtonUpAudioLang.Text = "Up";
      this.mpButtonUpAudioLang.UseVisualStyleBackColor = true;
      this.mpButtonUpAudioLang.Click += new System.EventHandler(this.mpButtonUpAudioLang_Click);
      // 
      // mpButtonAddAudioLang
      // 
      this.mpButtonAddAudioLang.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.mpButtonAddAudioLang.Location = new System.Drawing.Point(202, 40);
      this.mpButtonAddAudioLang.Name = "mpButtonAddAudioLang";
      this.mpButtonAddAudioLang.Size = new System.Drawing.Size(28, 20);
      this.mpButtonAddAudioLang.TabIndex = 3;
      this.mpButtonAddAudioLang.Text = ">";
      this.mpButtonAddAudioLang.UseVisualStyleBackColor = true;
      this.mpButtonAddAudioLang.Click += new System.EventHandler(this.mpButtonAddAudioLang_Click);
      // 
      // mpButtonRemoveAudioLang
      // 
      this.mpButtonRemoveAudioLang.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Right)));
      this.mpButtonRemoveAudioLang.Location = new System.Drawing.Point(202, 66);
      this.mpButtonRemoveAudioLang.Name = "mpButtonRemoveAudioLang";
      this.mpButtonRemoveAudioLang.Size = new System.Drawing.Size(28, 20);
      this.mpButtonRemoveAudioLang.TabIndex = 2;
      this.mpButtonRemoveAudioLang.Text = "<";
      this.mpButtonRemoveAudioLang.UseVisualStyleBackColor = true;
      this.mpButtonRemoveAudioLang.Click += new System.EventHandler(this.mpButtonRemoveAudioLang_Click);
      // 
      // mpListViewPreferredAudioLang
      // 
      this.mpListViewPreferredAudioLang.AllowDrop = true;
      this.mpListViewPreferredAudioLang.AllowRowReorder = true;
      this.mpListViewPreferredAudioLang.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.mpListViewPreferredAudioLang.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader2,
            this.columnHeader6});
      this.mpListViewPreferredAudioLang.FullRowSelect = true;
      this.mpListViewPreferredAudioLang.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
      this.mpListViewPreferredAudioLang.HideSelection = false;
      this.mpListViewPreferredAudioLang.Location = new System.Drawing.Point(239, 40);
      this.mpListViewPreferredAudioLang.Name = "mpListViewPreferredAudioLang";
      this.mpListViewPreferredAudioLang.Size = new System.Drawing.Size(183, 209);
      this.mpListViewPreferredAudioLang.TabIndex = 1;
      this.mpListViewPreferredAudioLang.UseCompatibleStateImageBehavior = false;
      this.mpListViewPreferredAudioLang.View = System.Windows.Forms.View.Details;
      this.mpListViewPreferredAudioLang.SelectedIndexChanged += new System.EventHandler(this.mpListView2_SelectedIndexChanged);
      // 
      // columnHeader2
      // 
      this.columnHeader2.Text = "Language";
      this.columnHeader2.Width = 125;
      // 
      // columnHeader6
      // 
      this.columnHeader6.Text = "ID";
      this.columnHeader6.Width = 35;
      // 
      // mpListViewAvailAudioLang
      // 
      this.mpListViewAvailAudioLang.AllowDrop = true;
      this.mpListViewAvailAudioLang.AllowRowReorder = true;
      this.mpListViewAvailAudioLang.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.mpListViewAvailAudioLang.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader5});
      this.mpListViewAvailAudioLang.FullRowSelect = true;
      this.mpListViewAvailAudioLang.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
      this.mpListViewAvailAudioLang.HideSelection = false;
      this.mpListViewAvailAudioLang.Location = new System.Drawing.Point(6, 40);
      this.mpListViewAvailAudioLang.Name = "mpListViewAvailAudioLang";
      this.mpListViewAvailAudioLang.Size = new System.Drawing.Size(183, 209);
      this.mpListViewAvailAudioLang.TabIndex = 0;
      this.mpListViewAvailAudioLang.UseCompatibleStateImageBehavior = false;
      this.mpListViewAvailAudioLang.View = System.Windows.Forms.View.Details;
      // 
      // columnHeader1
      // 
      this.columnHeader1.Text = "Language";
      this.columnHeader1.Width = 125;
      // 
      // columnHeader5
      // 
      this.columnHeader5.Text = "ID";
      this.columnHeader5.Width = 35;
      // 
      // tabPageSubtitles
      // 
      this.tabPageSubtitles.Controls.Add(this.mpGroupBox4);
      this.tabPageSubtitles.Controls.Add(this.mpGroupBox3);
      this.tabPageSubtitles.Location = new System.Drawing.Point(4, 22);
      this.tabPageSubtitles.Name = "tabPageSubtitles";
      this.tabPageSubtitles.Padding = new System.Windows.Forms.Padding(3);
      this.tabPageSubtitles.Size = new System.Drawing.Size(464, 419);
      this.tabPageSubtitles.TabIndex = 2;
      this.tabPageSubtitles.Text = "Subtitle settings";
      this.tabPageSubtitles.UseVisualStyleBackColor = true;
      // 
      // mpGroupBox4
      // 
      this.mpGroupBox4.Controls.Add(this.mpCheckBoxEnableCCSub);
      this.mpGroupBox4.Controls.Add(this.mpCheckBoxAutoShowSubWhenTvStarts);
      this.mpGroupBox4.Controls.Add(this.mpCheckBoxEnableTTXTSub);
      this.mpGroupBox4.Controls.Add(this.mpCheckBoxEnableDVBSub);
      this.mpGroupBox4.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox4.Location = new System.Drawing.Point(16, 308);
      this.mpGroupBox4.Name = "mpGroupBox4";
      this.mpGroupBox4.Size = new System.Drawing.Size(432, 86);
      this.mpGroupBox4.TabIndex = 10;
      this.mpGroupBox4.TabStop = false;
      this.mpGroupBox4.Text = "Subtitle settings";
      // 
      // mpCheckBoxEnableCCSub
      // 
      this.mpCheckBoxEnableCCSub.AutoSize = true;
      this.mpCheckBoxEnableCCSub.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxEnableCCSub.Location = new System.Drawing.Point(244, 51);
      this.mpCheckBoxEnableCCSub.Name = "mpCheckBoxEnableCCSub";
      this.mpCheckBoxEnableCCSub.Size = new System.Drawing.Size(115, 17);
      this.mpCheckBoxEnableCCSub.TabIndex = 12;
      this.mpCheckBoxEnableCCSub.Text = "Enable CC subtitles";
      this.mpCheckBoxEnableCCSub.UseVisualStyleBackColor = false;
      // 
      // mpCheckBoxAutoShowSubWhenTvStarts
      // 
      this.mpCheckBoxAutoShowSubWhenTvStarts.AutoSize = true;
      this.mpCheckBoxAutoShowSubWhenTvStarts.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxAutoShowSubWhenTvStarts.Location = new System.Drawing.Point(8, 51);
      this.mpCheckBoxAutoShowSubWhenTvStarts.Name = "mpCheckBoxAutoShowSubWhenTvStarts";
      this.mpCheckBoxAutoShowSubWhenTvStarts.Size = new System.Drawing.Size(186, 17);
      this.mpCheckBoxAutoShowSubWhenTvStarts.TabIndex = 12;
      this.mpCheckBoxAutoShowSubWhenTvStarts.Text = "Autoshow subtitles when TV starts";
      this.mpCheckBoxAutoShowSubWhenTvStarts.UseVisualStyleBackColor = false;
      // 
      // mpCheckBoxEnableTTXTSub
      // 
      this.mpCheckBoxEnableTTXTSub.AutoSize = true;
      this.mpCheckBoxEnableTTXTSub.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxEnableTTXTSub.Location = new System.Drawing.Point(244, 28);
      this.mpCheckBoxEnableTTXTSub.Name = "mpCheckBoxEnableTTXTSub";
      this.mpCheckBoxEnableTTXTSub.Size = new System.Drawing.Size(135, 17);
      this.mpCheckBoxEnableTTXTSub.TabIndex = 11;
      this.mpCheckBoxEnableTTXTSub.Text = "Enable teletext subtitles";
      this.mpCheckBoxEnableTTXTSub.UseVisualStyleBackColor = false;
      this.mpCheckBoxEnableTTXTSub.CheckedChanged += new System.EventHandler(this.mpCheckBox1_CheckedChanged);
      // 
      // mpCheckBoxEnableDVBSub
      // 
      this.mpCheckBoxEnableDVBSub.AutoSize = true;
      this.mpCheckBoxEnableDVBSub.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpCheckBoxEnableDVBSub.Location = new System.Drawing.Point(8, 28);
      this.mpCheckBoxEnableDVBSub.Name = "mpCheckBoxEnableDVBSub";
      this.mpCheckBoxEnableDVBSub.Size = new System.Drawing.Size(123, 17);
      this.mpCheckBoxEnableDVBSub.TabIndex = 7;
      this.mpCheckBoxEnableDVBSub.Text = "Enable DVB subtitles";
      this.mpCheckBoxEnableDVBSub.UseVisualStyleBackColor = false;
      // 
      // mpGroupBox3
      // 
      this.mpGroupBox3.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.mpGroupBox3.Controls.Add(this.mpLabel6);
      this.mpGroupBox3.Controls.Add(this.mpLabel7);
      this.mpGroupBox3.Controls.Add(this.mpButtonDownSubLang);
      this.mpGroupBox3.Controls.Add(this.mpButtonUpSubLang);
      this.mpGroupBox3.Controls.Add(this.mpButtonAddSubLang);
      this.mpGroupBox3.Controls.Add(this.mpButtonRemoveSubLang);
      this.mpGroupBox3.Controls.Add(this.mpListViewPreferredSubLang);
      this.mpGroupBox3.Controls.Add(this.mpListViewAvailSubLang);
      this.mpGroupBox3.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox3.Location = new System.Drawing.Point(16, 16);
      this.mpGroupBox3.Name = "mpGroupBox3";
      this.mpGroupBox3.Size = new System.Drawing.Size(432, 286);
      this.mpGroupBox3.TabIndex = 3;
      this.mpGroupBox3.TabStop = false;
      this.mpGroupBox3.Text = "Preferred subtitle languages";
      // 
      // mpLabel6
      // 
      this.mpLabel6.AutoSize = true;
      this.mpLabel6.Location = new System.Drawing.Point(236, 21);
      this.mpLabel6.Name = "mpLabel6";
      this.mpLabel6.Size = new System.Drawing.Size(102, 13);
      this.mpLabel6.TabIndex = 7;
      this.mpLabel6.Text = "Preferred languages";
      // 
      // mpLabel7
      // 
      this.mpLabel7.AutoSize = true;
      this.mpLabel7.Location = new System.Drawing.Point(6, 21);
      this.mpLabel7.Name = "mpLabel7";
      this.mpLabel7.Size = new System.Drawing.Size(102, 13);
      this.mpLabel7.TabIndex = 6;
      this.mpLabel7.Text = "Available languages";
      // 
      // mpButtonDownSubLang
      // 
      this.mpButtonDownSubLang.Location = new System.Drawing.Point(289, 257);
      this.mpButtonDownSubLang.Name = "mpButtonDownSubLang";
      this.mpButtonDownSubLang.Size = new System.Drawing.Size(46, 20);
      this.mpButtonDownSubLang.TabIndex = 5;
      this.mpButtonDownSubLang.Text = "Down";
      this.mpButtonDownSubLang.UseVisualStyleBackColor = true;
      this.mpButtonDownSubLang.Click += new System.EventHandler(this.mpButtonDownSubLang_Click);
      // 
      // mpButtonUpSubLang
      // 
      this.mpButtonUpSubLang.Location = new System.Drawing.Point(237, 257);
      this.mpButtonUpSubLang.Name = "mpButtonUpSubLang";
      this.mpButtonUpSubLang.Size = new System.Drawing.Size(46, 20);
      this.mpButtonUpSubLang.TabIndex = 4;
      this.mpButtonUpSubLang.Text = "Up";
      this.mpButtonUpSubLang.UseVisualStyleBackColor = true;
      this.mpButtonUpSubLang.Click += new System.EventHandler(this.mpButtonUpSubLang_Click);
      // 
      // mpButtonAddSubLang
      // 
      this.mpButtonAddSubLang.Location = new System.Drawing.Point(202, 40);
      this.mpButtonAddSubLang.Name = "mpButtonAddSubLang";
      this.mpButtonAddSubLang.Size = new System.Drawing.Size(28, 20);
      this.mpButtonAddSubLang.TabIndex = 3;
      this.mpButtonAddSubLang.Text = ">";
      this.mpButtonAddSubLang.UseVisualStyleBackColor = true;
      this.mpButtonAddSubLang.Click += new System.EventHandler(this.mpButtonAddSubLang_Click);
      // 
      // mpButtonRemoveSubLang
      // 
      this.mpButtonRemoveSubLang.Location = new System.Drawing.Point(202, 66);
      this.mpButtonRemoveSubLang.Name = "mpButtonRemoveSubLang";
      this.mpButtonRemoveSubLang.Size = new System.Drawing.Size(28, 20);
      this.mpButtonRemoveSubLang.TabIndex = 2;
      this.mpButtonRemoveSubLang.Text = "<";
      this.mpButtonRemoveSubLang.UseVisualStyleBackColor = true;
      this.mpButtonRemoveSubLang.Click += new System.EventHandler(this.mpButtonRemoveSubLang_Click);
      // 
      // mpListViewPreferredSubLang
      // 
      this.mpListViewPreferredSubLang.AllowDrop = true;
      this.mpListViewPreferredSubLang.AllowRowReorder = true;
      this.mpListViewPreferredSubLang.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader4,
            this.columnHeader8});
      this.mpListViewPreferredSubLang.FullRowSelect = true;
      this.mpListViewPreferredSubLang.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
      this.mpListViewPreferredSubLang.HideSelection = false;
      this.mpListViewPreferredSubLang.Location = new System.Drawing.Point(239, 40);
      this.mpListViewPreferredSubLang.Name = "mpListViewPreferredSubLang";
      this.mpListViewPreferredSubLang.Size = new System.Drawing.Size(183, 211);
      this.mpListViewPreferredSubLang.TabIndex = 1;
      this.mpListViewPreferredSubLang.UseCompatibleStateImageBehavior = false;
      this.mpListViewPreferredSubLang.View = System.Windows.Forms.View.Details;
      // 
      // columnHeader4
      // 
      this.columnHeader4.Text = "Language";
      this.columnHeader4.Width = 125;
      // 
      // columnHeader8
      // 
      this.columnHeader8.Text = "ID";
      this.columnHeader8.Width = 35;
      // 
      // mpListViewAvailSubLang
      // 
      this.mpListViewAvailSubLang.AllowDrop = true;
      this.mpListViewAvailSubLang.AllowRowReorder = true;
      this.mpListViewAvailSubLang.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader3,
            this.columnHeader7});
      this.mpListViewAvailSubLang.FullRowSelect = true;
      this.mpListViewAvailSubLang.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
      this.mpListViewAvailSubLang.HideSelection = false;
      this.mpListViewAvailSubLang.Location = new System.Drawing.Point(6, 40);
      this.mpListViewAvailSubLang.Name = "mpListViewAvailSubLang";
      this.mpListViewAvailSubLang.Size = new System.Drawing.Size(183, 211);
      this.mpListViewAvailSubLang.TabIndex = 0;
      this.mpListViewAvailSubLang.UseCompatibleStateImageBehavior = false;
      this.mpListViewAvailSubLang.View = System.Windows.Forms.View.Details;
      // 
      // columnHeader3
      // 
      this.columnHeader3.Text = "Language";
      this.columnHeader3.Width = 125;
      // 
      // columnHeader7
      // 
      this.columnHeader7.Text = "ID";
      this.columnHeader7.Width = 35;
      // 
      // tabPage1
      // 
      this.tabPage1.Controls.Add(this.mpGroupBox8);
      this.tabPage1.Controls.Add(this.mpGroupBox7);
      this.tabPage1.Location = new System.Drawing.Point(4, 22);
      this.tabPage1.Name = "tabPage1";
      this.tabPage1.Padding = new System.Windows.Forms.Padding(3);
      this.tabPage1.Size = new System.Drawing.Size(464, 419);
      this.tabPage1.TabIndex = 4;
      this.tabPage1.Text = "Notifications";
      this.tabPage1.UseVisualStyleBackColor = true;
      // 
      // mpGroupBox8
      // 
      this.mpGroupBox8.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.mpGroupBox8.Controls.Add(this.chkRecnotifications);
      this.mpGroupBox8.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox8.Location = new System.Drawing.Point(16, 166);
      this.mpGroupBox8.Name = "mpGroupBox8";
      this.mpGroupBox8.Size = new System.Drawing.Size(431, 82);
      this.mpGroupBox8.TabIndex = 13;
      this.mpGroupBox8.TabStop = false;
      this.mpGroupBox8.Text = "Recording notifications";
      // 
      // chkRecnotifications
      // 
      this.chkRecnotifications.AutoSize = true;
      this.chkRecnotifications.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.chkRecnotifications.Location = new System.Drawing.Point(22, 19);
      this.chkRecnotifications.Name = "chkRecnotifications";
      this.chkRecnotifications.Size = new System.Drawing.Size(327, 17);
      this.chkRecnotifications.TabIndex = 0;
      this.chkRecnotifications.Text = "Enabled (shows a notification when a recording starts and stops)";
      this.chkRecnotifications.UseVisualStyleBackColor = true;
      // 
      // mpGroupBox7
      // 
      this.mpGroupBox7.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.mpGroupBox7.Controls.Add(this.cbConfirmTimeshiftStop);
      this.mpGroupBox7.Controls.Add(this.txtNotifyAfter);
      this.mpGroupBox7.Controls.Add(this.labelNotifyTimeout);
      this.mpGroupBox7.Controls.Add(this.checkBoxNotifyPlaySound);
      this.mpGroupBox7.Controls.Add(this.mpLabel2);
      this.mpGroupBox7.Controls.Add(this.txtNotifyBefore);
      this.mpGroupBox7.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.mpGroupBox7.Location = new System.Drawing.Point(16, 16);
      this.mpGroupBox7.Name = "mpGroupBox7";
      this.mpGroupBox7.Size = new System.Drawing.Size(431, 135);
      this.mpGroupBox7.TabIndex = 12;
      this.mpGroupBox7.TabStop = false;
      this.mpGroupBox7.Text = "TV notifications";
      // 
      // cbConfirmTimeshiftStop
      // 
      this.cbConfirmTimeshiftStop.AutoSize = true;
      this.cbConfirmTimeshiftStop.Checked = true;
      this.cbConfirmTimeshiftStop.CheckState = System.Windows.Forms.CheckState.Checked;
      this.cbConfirmTimeshiftStop.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.cbConfirmTimeshiftStop.Location = new System.Drawing.Point(22, 103);
      this.cbConfirmTimeshiftStop.Name = "cbConfirmTimeshiftStop";
      this.cbConfirmTimeshiftStop.Size = new System.Drawing.Size(230, 17);
      this.cbConfirmTimeshiftStop.TabIndex = 12;
      this.cbConfirmTimeshiftStop.Text = "Ask for confirmation when stopping timeshift";
      this.cbConfirmTimeshiftStop.UseVisualStyleBackColor = true;
      // 
      // txtNotifyAfter
      // 
      this.txtNotifyAfter.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.txtNotifyAfter.BorderColor = System.Drawing.Color.Empty;
      this.txtNotifyAfter.Location = new System.Drawing.Point(164, 47);
      this.txtNotifyAfter.Name = "txtNotifyAfter";
      this.txtNotifyAfter.Size = new System.Drawing.Size(229, 20);
      this.txtNotifyAfter.TabIndex = 11;
      this.txtNotifyAfter.Text = "15";
      // 
      // labelNotifyTimeout
      // 
      this.labelNotifyTimeout.AutoSize = true;
      this.labelNotifyTimeout.Location = new System.Drawing.Point(19, 50);
      this.labelNotifyTimeout.Name = "labelNotifyTimeout";
      this.labelNotifyTimeout.Size = new System.Drawing.Size(139, 13);
      this.labelNotifyTimeout.TabIndex = 10;
      this.labelNotifyTimeout.Text = "Hide notification after (sec.):";
      // 
      // checkBoxNotifyPlaySound
      // 
      this.checkBoxNotifyPlaySound.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left) 
            | System.Windows.Forms.AnchorStyles.Right)));
      this.checkBoxNotifyPlaySound.AutoSize = true;
      this.checkBoxNotifyPlaySound.Checked = true;
      this.checkBoxNotifyPlaySound.CheckState = System.Windows.Forms.CheckState.Checked;
      this.checkBoxNotifyPlaySound.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.checkBoxNotifyPlaySound.Location = new System.Drawing.Point(22, 73);
      this.checkBoxNotifyPlaySound.Name = "checkBoxNotifyPlaySound";
      this.checkBoxNotifyPlaySound.Size = new System.Drawing.Size(105, 17);
      this.checkBoxNotifyPlaySound.TabIndex = 9;
      this.checkBoxNotifyPlaySound.Text = "Play \"notify.wav\"";
      this.checkBoxNotifyPlaySound.UseVisualStyleBackColor = true;
      // 
      // mpLabel2
      // 
      this.mpLabel2.AutoSize = true;
      this.mpLabel2.Location = new System.Drawing.Point(19, 24);
      this.mpLabel2.Name = "mpLabel2";
      this.mpLabel2.Size = new System.Drawing.Size(96, 13);
      this.mpLabel2.TabIndex = 8;
      this.mpLabel2.Text = "Notify before (sec):";
      // 
      // txtNotifyBefore
      // 
      this.txtNotifyBefore.Anchor = ((System.Windows.Forms.AnchorStyles)(((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
                  | System.Windows.Forms.AnchorStyles.Right)));
      this.txtNotifyBefore.BorderColor = System.Drawing.Color.Empty;
      this.txtNotifyBefore.Location = new System.Drawing.Point(164, 21);
      this.txtNotifyBefore.Name = "txtNotifyBefore";
      this.txtNotifyBefore.Size = new System.Drawing.Size(229, 20);
      this.txtNotifyBefore.TabIndex = 7;
      this.txtNotifyBefore.Text = "300";
      // 
      // TV
      // 
      this.Controls.Add(this.tabControlTVGeneral);
      this.Name = "TV";
      this.Size = new System.Drawing.Size(510, 450);
      this.mpGroupBox1.ResumeLayout(false);
      this.mpGroupBox1.PerformLayout();
      this.tabControlTVGeneral.ResumeLayout(false);
      this.tabPageGeneralSettings.ResumeLayout(false);
      this.mpGroupBoxAdditional.ResumeLayout(false);
      this.groupBox5.ResumeLayout(false);
      this.groupBox5.PerformLayout();
      this.groupBox3.ResumeLayout(false);
      this.groupBox3.PerformLayout();
      ((System.ComponentModel.ISupportInitialize)(this.channelNumberMaxLengthNumUpDn)).EndInit();
      this.grpTsReader.ResumeLayout(false);
      this.grpTsReader.PerformLayout();
      this.mpGroupBox6.ResumeLayout(false);
      this.mpGroupBox6.PerformLayout();
      this.mpGroupBox5.ResumeLayout(false);
      this.mpGroupBox5.PerformLayout();
      this.tabPageAudioLanguages.ResumeLayout(false);
      this.groupBox2.ResumeLayout(false);
      this.groupBox2.PerformLayout();
      this.tabPageSubtitles.ResumeLayout(false);
      this.mpGroupBox4.ResumeLayout(false);
      this.mpGroupBox4.PerformLayout();
      this.mpGroupBox3.ResumeLayout(false);
      this.mpGroupBox3.PerformLayout();
      this.tabPage1.ResumeLayout(false);
      this.mpGroupBox8.ResumeLayout(false);
      this.mpGroupBox8.PerformLayout();
      this.mpGroupBox7.ResumeLayout(false);
      this.mpGroupBox7.PerformLayout();
      this.ResumeLayout(false);

    }
コード例 #8
0
ファイル: TV.cs プロジェクト: splatterpop/MediaPortal-1
    private void FillLists(MPListView availList, MPListView preferredList, string preferredLanguages, Dictionary<String, String> languages)
    {
      availList.Items.Clear();
      preferredList.Items.Clear();
      string[] preferredLanguageKeys = preferredLanguages.Split(';');

      // fill preferredList with the preferred languages
      foreach (string key in preferredLanguageKeys)
      {
        if (!String.IsNullOrEmpty(key) && languages.ContainsKey(key) && !preferredList.Items.ContainsKey(key))
        {
          ListViewItem item = new ListViewItem(new string[] { languages[key], key }) { Name = key };
          preferredList.Items.Add(item);
        }
      }

      // fill availList with the rest of them
      foreach (KeyValuePair<string, string> kv in languages)
      {
        if (!availList.Items.ContainsKey(kv.Key) && !preferredList.Items.ContainsKey(kv.Key))
        {
          ListViewItem item = new ListViewItem(new string[] { kv.Value, kv.Key }) { Name = kv.Key };
          availList.Items.Add(item);
        }
      }

      availList.ListViewItemSorter = new ListViewColumnSorter() { SortColumn = 0, Order = SortOrder.Ascending };
      availList.Sort();
    }
コード例 #9
0
ファイル: TV.cs プロジェクト: HeinA/MediaPortal-1
    private void FillLists(MPListView availList, MPListView preferredList, string preferredLanguages, List<KeyValuePair<string, string>> languages)
    {
      availList.Items.Clear();
      preferredList.Items.Clear();
      foreach (KeyValuePair<string, string> kv in languages)
      {
        ListViewItem item = new ListViewItem(new string[] { kv.Value, kv.Key });
        item.Name = kv.Key;

        MPListView list;
        if (preferredLanguages.Contains(item.Name))
          list = preferredList;
        else
          list = availList;

        if (!list.Items.ContainsKey(item.Name))
        {
          list.Items.Add(item);
        }
      }

      availList.ListViewItemSorter = new ListViewColumnSorter() { SortColumn = 0, Order = SortOrder.Ascending };
      availList.Sort();
    }
コード例 #10
0
ファイル: MPListView.cs プロジェクト: usermonk/MediaPortal-1
        protected override void OnDragDrop(DragEventArgs e)
        {
            if (!AllowRowReorder)
            {
                return;
            }

            MPListView sourceListView = e.Data.GetData(typeof(MPListView)) as MPListView;
            bool       isGroupMapping = (sourceListView != this);

            if (SelectedItems.Count == 0 && !isChannelListView && !isGroupMapping)
            {
                return;
            }

            int dropIndex = this.Items.Count;

            Point        cp         = PointToClient(new Point(e.X, e.Y));
            ListViewItem dragToItem = GetItemAt(cp.X, cp.Y);

            //when dropping a channel to an empty channel group there can't be an item anywhere
            if (dragToItem == null && !isGroupMapping)
            {
                return;
            }
            else if (dragToItem != null)
            {
                dropIndex = dragToItem.Index;

                //there is no space above the first item for drawing the the new line, which shows the user, where the item will be dropped
                dropIndex++;
            }

            BeginUpdate();
            try
            {
                MPListView targetListView = null;

                if (!isGroupMapping)
                {
                    //must be reorder then
                    targetListView = this;
                }
                else
                {
                    //is group mapping so try to get the selected items from source listview
                    targetListView = sourceListView;
                }

                ArrayList insertItems = new ArrayList(targetListView.SelectedItems.Count);

                foreach (ListViewItem item in targetListView.SelectedItems)
                {
                    insertItems.Add(item.Clone());
                }

                for (int i = insertItems.Count - 1; i >= 0; i--)
                {
                    ListViewItem insertItem = (ListViewItem)insertItems[i];

                    //delete old items first
                    for (int j = Items.Count - 1; j >= 0; j--)
                    {
                        int idChannelThis   = 0;
                        int idChannelTarget = 0;

                        try
                        {
                            //we can have Channel and ChannelMap here, thats why we use late-binding here to be able to compare them without need for referencing the classes
                            idChannelThis =
                                (int)
                                Items[j].Tag.GetType().InvokeMember("IdChannel", System.Reflection.BindingFlags.GetProperty, null,
                                                                    Items[j].Tag, null);
                            idChannelTarget =
                                (int)
                                insertItem.Tag.GetType().InvokeMember("IdChannel", System.Reflection.BindingFlags.GetProperty, null,
                                                                      insertItem.Tag, null);
                        }
                        catch
                        {
                            continue;
                        }

                        if (idChannelThis == idChannelTarget)
                        {
                            Items.RemoveAt(j);

                            if (j < dropIndex)
                            {
                                dropIndex--;
                            }
                        }
                    }

                    Items.Insert(dropIndex, insertItem);
                }

                if (!isGroupMapping)
                {
                    //removing the source items is only needed when doing reordering...
                    foreach (ListViewItem removeItem in SelectedItems)
                    {
                        Items.Remove(removeItem);
                    }
                }

                base.OnDragDrop(e);

                if (!isGroupMapping)
                {
                    base.OnItemDrag(new ItemDragEventArgs(MouseButtons.Left, insertItems[0]));
                }
                else
                {
                    base.OnItemDrag(new ItemDragEventArgs(MouseButtons.Left, sourceListView));
                }
            }
            finally
            {
                EndUpdate();
            }
        }
コード例 #11
0
ファイル: MPListView.cs プロジェクト: usermonk/MediaPortal-1
        protected override void OnDragOver(DragEventArgs e)
        {
            if (!AllowRowReorder)
            {
                e.Effect = DragDropEffects.None;
                return;
            }

            bool       isGroupMapping = false;
            MPListView sourceListView = null;

            if (!isChannelListView)
            {
                if ((e.Data.GetData(REORDER.GetType()) as string) != REORDER)
                {
                    e.Effect = DragDropEffects.None;
                    return;
                }
            }
            else
            {
                //channel group assignment is going on
                sourceListView = e.Data.GetData(typeof(MPListView)) as MPListView;
                if (sourceListView == null)
                {
                    e.Effect = DragDropEffects.None;
                    return;
                }

                isGroupMapping = (sourceListView != this);
            }

            ListViewItem hoverItem = null;

            if (this.Items.Count > 0)
            {
                Point cp = PointToClient(new Point(e.X, e.Y));

                hoverItem = GetItemAt(cp.X, cp.Y);
                if (hoverItem == null)
                {
                    if (!isGroupMapping)
                    {
                        e.Effect = DragDropEffects.None;
                        this.Invalidate();
                        return;
                    }
                }

                if (hoverItem != null)
                {
                    foreach (ListViewItem moveItem in SelectedItems)
                    {
                        if (moveItem.Index == hoverItem.Index)
                        {
                            e.Effect = DragDropEffects.None;
                            hoverItem.EnsureVisible();
                            this.Invalidate();
                            return;
                        }
                    }

                    if (hoverItem != lastItem)
                    {
                        this.Invalidate();
                    }

                    lastItem = hoverItem;

                    Color lineColor = SystemColors.Highlight;

                    if (this.View == View.Details || this.View == View.List)
                    {
                        using (Graphics g = this.CreateGraphics())
                        {
                            int totalColWidth = 0;

                            for (int i = 0; i < this.Columns.Count; i++)
                            {
                                totalColWidth += this.Columns[i].Width;
                            }

                            g.DrawLine(new Pen(lineColor, 2),
                                       new Point(hoverItem.Bounds.X,
                                                 hoverItem.Bounds.Y + hoverItem.Bounds.Height),
                                       new Point(hoverItem.Bounds.X + totalColWidth,
                                                 hoverItem.Bounds.Y + hoverItem.Bounds.Height));

                            g.FillPolygon(new SolidBrush(lineColor),
                                          new Point[]
                            {
                                new Point(hoverItem.Bounds.X,
                                          hoverItem.Bounds.Y + hoverItem.Bounds.Height - 7),
                                new Point(hoverItem.Bounds.X + 6,
                                          hoverItem.Bounds.Y + hoverItem.Bounds.Height - 1),
                                new Point(hoverItem.Bounds.X,
                                          hoverItem.Bounds.Y + hoverItem.Bounds.Height + 6)
                            });

                            g.FillPolygon(new SolidBrush(lineColor),
                                          new Point[]
                            {
                                new Point(totalColWidth,
                                          hoverItem.Bounds.Y + hoverItem.Bounds.Height - 7),
                                new Point(totalColWidth - 7,
                                          hoverItem.Bounds.Y + hoverItem.Bounds.Height - 1),
                                new Point(totalColWidth,
                                          hoverItem.Bounds.Y + hoverItem.Bounds.Height + 7)
                            });
                        }
                    }
                } //if (hoverItem != null)
                else
                {
                    this.Invalidate();
                }
            }
            else
            {
                this.Invalidate();
            }

            base.OnDragOver(e);

            if (!isChannelListView)
            {
                e.Effect = (e.Data.GetData(REORDER.GetType()) as string) == REORDER
                     ? DragDropEffects.Move
                     : DragDropEffects.None;
            }
            else
            {
                if (sourceListView != null)
                {
                    if (sourceListView == this)
                    {
                        e.Effect = DragDropEffects.Move;
                    }
                    else
                    {
                        e.Effect = DragDropEffects.Copy;
                    }
                }
                else
                {
                    e.Effect = DragDropEffects.None;
                }
            }

            if (hoverItem != null)
            {
                hoverItem.EnsureVisible();
            }
        }
コード例 #12
0
ファイル: BaseShares.cs プロジェクト: cmendozac/MediaPortal-1
    /// <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.mpButtonWOL = new MediaPortal.UserInterface.Controls.MPButton();
      this.checkBoxSwitchRemovableDrive = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.checkBoxAddOpticalDiskDrives = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.checkBoxRemember = new MediaPortal.UserInterface.Controls.MPCheckBox();
      this.deleteButton = new MediaPortal.UserInterface.Controls.MPButton();
      this.editButton = new MediaPortal.UserInterface.Controls.MPButton();
      this.addButton = new MediaPortal.UserInterface.Controls.MPButton();
      this.sharesListView = new MediaPortal.UserInterface.Controls.MPListView();
      this.columnHeader1 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader3 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader2 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader4 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.columnHeader5 = ((System.Windows.Forms.ColumnHeader)(new System.Windows.Forms.ColumnHeader()));
      this.groupBox1.SuspendLayout();
      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.mpButtonWOL);
      this.groupBox1.Controls.Add(this.checkBoxSwitchRemovableDrive);
      this.groupBox1.Controls.Add(this.checkBoxAddOpticalDiskDrives);
      this.groupBox1.Controls.Add(this.checkBoxRemember);
      this.groupBox1.Controls.Add(this.deleteButton);
      this.groupBox1.Controls.Add(this.editButton);
      this.groupBox1.Controls.Add(this.addButton);
      this.groupBox1.Controls.Add(this.sharesListView);
      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, 408);
      this.groupBox1.TabIndex = 0;
      this.groupBox1.TabStop = false;
      // 
      // mpButtonWOL
      // 
      this.mpButtonWOL.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
      this.mpButtonWOL.Location = new System.Drawing.Point(342, 359);
      this.mpButtonWOL.Name = "mpButtonWOL";
      this.mpButtonWOL.Size = new System.Drawing.Size(104, 23);
      this.mpButtonWOL.TabIndex = 7;
      this.mpButtonWOL.Text = "WOL parameters";
      this.mpButtonWOL.UseVisualStyleBackColor = true;
      this.mpButtonWOL.Click += new System.EventHandler(this.mpButtonWOL_Click);
      // 
      // checkBoxSwitchRemovableDrive
      // 
      this.checkBoxSwitchRemovableDrive.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
      this.checkBoxSwitchRemovableDrive.AutoSize = true;
      this.checkBoxSwitchRemovableDrive.Checked = true;
      this.checkBoxSwitchRemovableDrive.CheckState = System.Windows.Forms.CheckState.Checked;
      this.checkBoxSwitchRemovableDrive.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.checkBoxSwitchRemovableDrive.Location = new System.Drawing.Point(16, 380);
      this.checkBoxSwitchRemovableDrive.Name = "checkBoxSwitchRemovableDrive";
      this.checkBoxSwitchRemovableDrive.Size = new System.Drawing.Size(254, 17);
      this.checkBoxSwitchRemovableDrive.TabIndex = 6;
      this.checkBoxSwitchRemovableDrive.Text = "Automatically switch to inserted removable drives";
      this.checkBoxSwitchRemovableDrive.UseVisualStyleBackColor = true;
      // 
      // checkBoxAddOpticalDiskDrives
      // 
      this.checkBoxAddOpticalDiskDrives.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
      this.checkBoxAddOpticalDiskDrives.AutoSize = true;
      this.checkBoxAddOpticalDiskDrives.Checked = true;
      this.checkBoxAddOpticalDiskDrives.CheckState = System.Windows.Forms.CheckState.Checked;
      this.checkBoxAddOpticalDiskDrives.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.checkBoxAddOpticalDiskDrives.Location = new System.Drawing.Point(16, 357);
      this.checkBoxAddOpticalDiskDrives.Name = "checkBoxAddOpticalDiskDrives";
      this.checkBoxAddOpticalDiskDrives.Size = new System.Drawing.Size(194, 17);
      this.checkBoxAddOpticalDiskDrives.TabIndex = 5;
      this.checkBoxAddOpticalDiskDrives.Text = "Automatically add optical disk drives";
      this.checkBoxAddOpticalDiskDrives.UseVisualStyleBackColor = true;
      // 
      // checkBoxRemember
      // 
      this.checkBoxRemember.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Left)));
      this.checkBoxRemember.AutoSize = true;
      this.checkBoxRemember.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
      this.checkBoxRemember.Location = new System.Drawing.Point(16, 334);
      this.checkBoxRemember.Name = "checkBoxRemember";
      this.checkBoxRemember.Size = new System.Drawing.Size(149, 17);
      this.checkBoxRemember.TabIndex = 1;
      this.checkBoxRemember.Text = "Remember last used folder";
      this.checkBoxRemember.UseVisualStyleBackColor = true;
      // 
      // deleteButton
      // 
      this.deleteButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
      this.deleteButton.Enabled = false;
      this.deleteButton.Location = new System.Drawing.Point(374, 331);
      this.deleteButton.Name = "deleteButton";
      this.deleteButton.Size = new System.Drawing.Size(72, 22);
      this.deleteButton.TabIndex = 4;
      this.deleteButton.Text = "Delete";
      this.deleteButton.UseVisualStyleBackColor = true;
      this.deleteButton.Click += new System.EventHandler(this.deleteButton_Click);
      // 
      // editButton
      // 
      this.editButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
      this.editButton.Enabled = false;
      this.editButton.Location = new System.Drawing.Point(294, 331);
      this.editButton.Name = "editButton";
      this.editButton.Size = new System.Drawing.Size(72, 22);
      this.editButton.TabIndex = 3;
      this.editButton.Text = "Edit";
      this.editButton.UseVisualStyleBackColor = true;
      this.editButton.Click += new System.EventHandler(this.editButton_Click);
      // 
      // addButton
      // 
      this.addButton.Anchor = ((System.Windows.Forms.AnchorStyles)((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
      this.addButton.Location = new System.Drawing.Point(214, 331);
      this.addButton.Name = "addButton";
      this.addButton.Size = new System.Drawing.Size(72, 22);
      this.addButton.TabIndex = 2;
      this.addButton.Text = "Add";
      this.addButton.UseVisualStyleBackColor = true;
      this.addButton.Click += new System.EventHandler(this.addButton_Click);
      // 
      // sharesListView
      // 
      this.sharesListView.AllowDrop = true;
      this.sharesListView.AllowRowReorder = true;
      this.sharesListView.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.sharesListView.CheckBoxes = true;
      this.sharesListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[] {
            this.columnHeader1,
            this.columnHeader3,
            this.columnHeader2,
            this.columnHeader4,
            this.columnHeader5});
      this.sharesListView.FullRowSelect = true;
      this.sharesListView.Location = new System.Drawing.Point(16, 24);
      this.sharesListView.Name = "sharesListView";
      this.sharesListView.Size = new System.Drawing.Size(430, 301);
      this.sharesListView.TabIndex = 0;
      this.sharesListView.UseCompatibleStateImageBehavior = false;
      this.sharesListView.View = System.Windows.Forms.View.Details;
      this.sharesListView.ItemCheck += new System.Windows.Forms.ItemCheckEventHandler(this.sharesListView_ItemCheck);
      this.sharesListView.SelectedIndexChanged += new System.EventHandler(this.sharesListView_SelectedIndexChanged);
      // 
      // columnHeader1
      // 
      this.columnHeader1.Text = "Name";
      this.columnHeader1.Width = 106;
      // 
      // columnHeader3
      // 
      this.columnHeader3.Text = "Pin";
      this.columnHeader3.Width = 57;
      // 
      // columnHeader2
      // 
      this.columnHeader2.Text = "Folder";
      this.columnHeader2.Width = 210;
      // 
      // columnHeader4
      // 
      this.columnHeader4.Text = "Thumbs";
      // 
      // columnHeader5
      // 
      this.columnHeader5.Text = "MAC Address";
      this.columnHeader5.Width = 120;
      // 
      // BaseShares
      // 
      this.Controls.Add(this.groupBox1);
      this.Name = "BaseShares";
      this.Size = new System.Drawing.Size(472, 408);
      this.groupBox1.ResumeLayout(false);
      this.groupBox1.PerformLayout();
      this.ResumeLayout(false);

    }
コード例 #13
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
   System.Windows.Forms.ListViewItem listViewItem1 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                             {
                                                                                               "General",
                                                                                               "Cursor keys",
                                                                                               "Select item"
                                                                                             }, -1);
   System.Windows.Forms.ListViewItem listViewItem2 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                             {
                                                                                               "General",
                                                                                               "Home",
                                                                                               "Select first item"
                                                                                             }, -1);
   System.Windows.Forms.ListViewItem listViewItem3 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                             {
                                                                                               "General",
                                                                                               "End",
                                                                                               "Select last item"
                                                                                             }, -1);
   System.Windows.Forms.ListViewItem listViewItem4 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                             {
                                                                                               "General",
                                                                                               "PageUp",
                                                                                               "Previous item page"
                                                                                             }, -1);
   System.Windows.Forms.ListViewItem listViewItem5 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                             {
                                                                                               "General",
                                                                                               "PageDown",
                                                                                               "Next item page"
                                                                                             }, -1);
   System.Windows.Forms.ListViewItem listViewItem6 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                             {
                                                                                               "General",
                                                                                               "Enter",
                                                                                               "Perform action"
                                                                                             }, -1);
   System.Windows.Forms.ListViewItem listViewItem7 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                             {
                                                                                               "General",
                                                                                               "Escape",
                                                                                               "Previous window"
                                                                                             }, -1);
   System.Windows.Forms.ListViewItem listViewItem8 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                             {
                                                                                               "General",
                                                                                               "U",
                                                                                               "parent folder"
                                                                                             }, -1);
   System.Windows.Forms.ListViewItem listViewItem9 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                             {
                                                                                               "General",
                                                                                               "H",
                                                                                               "Switch between classic and basic home-screen"
                                                                                             }, -1);
   System.Windows.Forms.ListViewItem listViewItem10 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "Space",
                                                                                                "Pause/Resume"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem11 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "X",
                                                                                                "Switch between GUI and fullscreen tv/video"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem12 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "R",
                                                                                                "Record current TV program"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem13 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "P",
                                                                                                "Start playing"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem14 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "B",
                                                                                                "Stop playing"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem15 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "F3",
                                                                                                "Show information about selected item"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem16 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "F5",
                                                                                                "<< Rewind"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem17 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "F6",
                                                                                                "Fast Forward >>"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem18 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "F7",
                                                                                                "|<< Play previous"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem19 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "F8",
                                                                                                "Play next >>|"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem20 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "F9",
                                                                                                "Show Context menu"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem21 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "-",
                                                                                                "Volume -"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem22 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "= or +",
                                                                                                "Volume +"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem23 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "General",
                                                                                                "M",
                                                                                                "Mute"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem24 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "My Music",
                                                                                                "F1",
                                                                                                "Switch between playlist and module"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem25 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "My Music",
                                                                                                "Y",
                                                                                                "Add song/folder to playlist"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem26 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "My Pictures",
                                                                                                "0",
                                                                                                "Delete selected picture"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem27 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Slideshow",
                                                                                                "F3",
                                                                                                "Show picture details"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem28 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Slideshow",
                                                                                                "left",
                                                                                                "Previous picture or move left in zoom mode"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem29 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Slideshow",
                                                                                                "right",
                                                                                                "Next picture or move right in zoom mode"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem30 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Slideshow",
                                                                                                "Enter",
                                                                                                "Pause/Resume slideshow"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem31 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Slideshow",
                                                                                                "PageUp",
                                                                                                "Zoom out"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem32 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Slideshow",
                                                                                                "PageDown",
                                                                                                "Zoom in"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem33 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Slideshow",
                                                                                                "1-9",
                                                                                                "Zoom level 1-9"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem34 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Slideshow",
                                                                                                "up",
                                                                                                "Move picture up in zoom mode"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem35 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Slideshow",
                                                                                                "down",
                                                                                                "Move picture down in zoom mode"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem36 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Slideshow",
                                                                                                "R",
                                                                                                "Rotate picture"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem37 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen Video",
                                                                                                "left",
                                                                                                "Step backward"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem38 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen Video",
                                                                                                "right",
                                                                                                "Step forward"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem39 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen Video",
                                                                                                "down",
                                                                                                "Big step backward"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem40 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen Video",
                                                                                                "up",
                                                                                                "Big step forward"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem41 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen Video",
                                                                                                "0-9",
                                                                                                "Enter time"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem42 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen Video",
                                                                                                "Y",
                                                                                                "Show/hide OSD"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem44 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen Video",
                                                                                                "S",
                                                                                                "Switch zoom mode / aspect ratio"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem45 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen Video",
                                                                                                "L",
                                                                                                "Enable subtitles"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem46 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen Video",
                                                                                                "A",
                                                                                                "Switch audio language / stream"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem47 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "My Videos",
                                                                                                "0",
                                                                                                "Delete selected movie"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem48 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "My Videos",
                                                                                                "F1",
                                                                                                "Switch to/from video playlist"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem49 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "My Videos",
                                                                                                "Y",
                                                                                                "Add selected item to video playlist"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem50 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Recorded TV",
                                                                                                "0",
                                                                                                "Delete selected recording"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem51 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "TV Guide",
                                                                                                "F1",
                                                                                                "Default time interval"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem52 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "TV Guide",
                                                                                                "F7",
                                                                                                "Decrease time interval"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem53 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "TV Guide",
                                                                                                "F8",
                                                                                                "Increase time interval"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem54 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "TV Guide",
                                                                                                "Home",
                                                                                                "Go to current time"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem55 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen TV",
                                                                                                "left",
                                                                                                "Step backward"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem56 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen TV",
                                                                                                "right",
                                                                                                "Step forward"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem57 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen TV",
                                                                                                "up",
                                                                                                "Big step backward"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem58 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen TV",
                                                                                                "down",
                                                                                                "Big step forward"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem59 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen TV",
                                                                                                "F7",
                                                                                                "Previous TV channel"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem60 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen TV",
                                                                                                "F8",
                                                                                                "Next TV channel"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem61 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen TV",
                                                                                                "Y",
                                                                                                "Show/hide OSD"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem63 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen TV",
                                                                                                "S",
                                                                                                "Switch zoom mode / aspect ratio"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem64 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen TV",
                                                                                                "L",
                                                                                                "Enable subtitles"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem65 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Fullscreen TV",
                                                                                                "A",
                                                                                                "Switch audio language / stream"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem66 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "DVD",
                                                                                                "D",
                                                                                                "Show DVD menu"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem67 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "DVD",
                                                                                                "F7",
                                                                                                "Previous chapter"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem68 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "DVD",
                                                                                                "F8",
                                                                                                "Next chapter"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem69 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Movie calibration",
                                                                                                "enter",
                                                                                                "Swap arrows"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem70 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "Movie calibration",
                                                                                                "F1",
                                                                                                "Reset calibration"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem71 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "GUI calibration",
                                                                                                "F1",
                                                                                                "Reset calibration"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem72 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "OSD",
                                                                                                "PageUp",
                                                                                                "value plus"
                                                                                              }, -1);
   System.Windows.Forms.ListViewItem listViewItem73 = new System.Windows.Forms.ListViewItem(new string[]
                                                                                              {
                                                                                                "OSD",
                                                                                                "PageDown",
                                                                                                "value min"
                                                                                              }, -1);
   this.groupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.sharesListView = new MediaPortal.UserInterface.Controls.MPListView();
   this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
   this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
   this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
   this.groupBox1.SuspendLayout();
   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.sharesListView);
   this.groupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.groupBox1.Location = new System.Drawing.Point(0, 0);
   this.groupBox1.Name = "groupBox1";
   this.groupBox1.Size = new System.Drawing.Size(472, 408);
   this.groupBox1.TabIndex = 0;
   this.groupBox1.TabStop = false;
   this.groupBox1.Text = "Overview";
   // 
   // sharesListView
   // 
   this.sharesListView.AllowRowReorder = false;
   this.sharesListView.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.sharesListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[]
                                          {
                                            this.columnHeader1,
                                            this.columnHeader3,
                                            this.columnHeader2
                                          });
   this.sharesListView.FullRowSelect = true;
   this.sharesListView.HeaderStyle = System.Windows.Forms.ColumnHeaderStyle.Nonclickable;
   this.sharesListView.Items.AddRange(new System.Windows.Forms.ListViewItem[]
                                        {
                                          listViewItem1,
                                          listViewItem2,
                                          listViewItem3,
                                          listViewItem4,
                                          listViewItem5,
                                          listViewItem6,
                                          listViewItem7,
                                          listViewItem8,
                                          listViewItem9,
                                          listViewItem10,
                                          listViewItem11,
                                          listViewItem12,
                                          listViewItem13,
                                          listViewItem14,
                                          listViewItem15,
                                          listViewItem16,
                                          listViewItem17,
                                          listViewItem18,
                                          listViewItem19,
                                          listViewItem20,
                                          listViewItem21,
                                          listViewItem22,
                                          listViewItem23,
                                          listViewItem24,
                                          listViewItem25,
                                          listViewItem26,
                                          listViewItem27,
                                          listViewItem28,
                                          listViewItem29,
                                          listViewItem30,
                                          listViewItem31,
                                          listViewItem32,
                                          listViewItem33,
                                          listViewItem34,
                                          listViewItem35,
                                          listViewItem36,
                                          listViewItem37,
                                          listViewItem38,
                                          listViewItem39,
                                          listViewItem40,
                                          listViewItem41,
                                          listViewItem42,
                                          listViewItem44,
                                          listViewItem45,
                                          listViewItem46,
                                          listViewItem47,
                                          listViewItem48,
                                          listViewItem49,
                                          listViewItem50,
                                          listViewItem51,
                                          listViewItem52,
                                          listViewItem53,
                                          listViewItem54,
                                          listViewItem55,
                                          listViewItem56,
                                          listViewItem57,
                                          listViewItem58,
                                          listViewItem59,
                                          listViewItem60,
                                          listViewItem61,
                                          listViewItem63,
                                          listViewItem64,
                                          listViewItem65,
                                          listViewItem66,
                                          listViewItem67,
                                          listViewItem68,
                                          listViewItem69,
                                          listViewItem70,
                                          listViewItem71,
                                          listViewItem72,
                                          listViewItem73
                                        });
   this.sharesListView.Location = new System.Drawing.Point(16, 24);
   this.sharesListView.Name = "sharesListView";
   this.sharesListView.Size = new System.Drawing.Size(440, 368);
   this.sharesListView.TabIndex = 0;
   this.sharesListView.UseCompatibleStateImageBehavior = false;
   this.sharesListView.View = System.Windows.Forms.View.Details;
   // 
   // columnHeader1
   // 
   this.columnHeader1.Text = "Module";
   this.columnHeader1.Width = 126;
   // 
   // columnHeader3
   // 
   this.columnHeader3.Text = "Key";
   this.columnHeader3.Width = 69;
   // 
   // columnHeader2
   // 
   this.columnHeader2.Text = "Function";
   this.columnHeader2.Width = 224;
   // 
   // KeyboardControl
   // 
   this.Controls.Add(this.groupBox1);
   this.Name = "KeyboardControl";
   this.Size = new System.Drawing.Size(472, 408);
   this.groupBox1.ResumeLayout(false);
   this.ResumeLayout(false);
 }
コード例 #14
0
 /// <summary>
 /// Required method for Designer support - do not modify
 /// the contents of this method with the code editor.
 /// </summary>
 private void InitializeComponent()
 {
   this.cancelButton = new MediaPortal.UserInterface.Controls.MPButton();
   this.okButton = new MediaPortal.UserInterface.Controls.MPButton();
   this.parametersListView = new MediaPortal.UserInterface.Controls.MPListView();
   this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
   this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
   this.SuspendLayout();
   // 
   // cancelButton
   // 
   this.cancelButton.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
   this.cancelButton.DialogResult = System.Windows.Forms.DialogResult.Cancel;
   this.cancelButton.Location = new System.Drawing.Point(286, 144);
   this.cancelButton.Name = "cancelButton";
   this.cancelButton.TabIndex = 2;
   this.cancelButton.Text = "Cancel";
   this.cancelButton.Click += new System.EventHandler(this.cancelButton_Click);
   // 
   // okButton
   // 
   this.okButton.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
   this.okButton.Enabled = false;
   this.okButton.Location = new System.Drawing.Point(206, 144);
   this.okButton.Name = "okButton";
   this.okButton.TabIndex = 1;
   this.okButton.Text = "OK";
   this.okButton.Click += new System.EventHandler(this.okButton_Click);
   // 
   // parametersListView
   // 
   this.parametersListView.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.parametersListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[]
                                              {
                                                this.columnHeader1,
                                                this.columnHeader2
                                              });
   this.parametersListView.FullRowSelect = true;
   this.parametersListView.Location = new System.Drawing.Point(8, 8);
   this.parametersListView.Name = "parametersListView";
   this.parametersListView.Size = new System.Drawing.Size(352, 128);
   this.parametersListView.TabIndex = 0;
   this.parametersListView.View = System.Windows.Forms.View.Details;
   this.parametersListView.DoubleClick += new System.EventHandler(this.parametersListView_DoubleClick);
   this.parametersListView.SelectedIndexChanged +=
     new System.EventHandler(this.parametersListView_SelectedIndexChanged);
   // 
   // columnHeader1
   // 
   this.columnHeader1.Text = "Parameter";
   this.columnHeader1.Width = 77;
   // 
   // columnHeader2
   // 
   this.columnHeader2.Text = "Description";
   this.columnHeader2.Width = 271;
   // 
   // ParameterForm
   // 
   this.AcceptButton = this.okButton;
   this.AutoScaleBaseSize = new System.Drawing.Size(5, 13);
   this.CancelButton = this.cancelButton;
   this.ClientSize = new System.Drawing.Size(370, 176);
   this.Controls.Add(this.parametersListView);
   this.Controls.Add(this.okButton);
   this.Controls.Add(this.cancelButton);
   this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.SizableToolWindow;
   this.Name = "ParameterForm";
   this.ShowInTaskbar = false;
   this.SizeGripStyle = System.Windows.Forms.SizeGripStyle.Hide;
   this.StartPosition = System.Windows.Forms.FormStartPosition.CenterParent;
   this.Text = "Parameter";
   this.ResumeLayout(false);
 }
コード例 #15
0
 /// <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.intervalTextBox = new MediaPortal.UserInterface.Controls.MPTextBox();
   this.label3 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.windSpeedComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.label2 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.temperatureComboBox = new MediaPortal.UserInterface.Controls.MPComboBox();
   this.label1 = new MediaPortal.UserInterface.Controls.MPLabel();
   this.mpGroupBox1 = new MediaPortal.UserInterface.Controls.MPGroupBox();
   this.editButton = new MediaPortal.UserInterface.Controls.MPButton();
   this.searchButton = new MediaPortal.UserInterface.Controls.MPButton();
   this.removeButton = new MediaPortal.UserInterface.Controls.MPButton();
   this.citiesListView = new MediaPortal.UserInterface.Controls.MPListView();
   this.columnHeader1 = new System.Windows.Forms.ColumnHeader();
   this.columnHeader2 = new System.Windows.Forms.ColumnHeader();
   this.columnHeader3 = new System.Windows.Forms.ColumnHeader();
   this.columnHeader4 = new System.Windows.Forms.ColumnHeader();
   this.columnHeader5 = new System.Windows.Forms.ColumnHeader();
   this.columnHeader6 = new System.Windows.Forms.ColumnHeader();
   this.columnHeader7 = new System.Windows.Forms.ColumnHeader();
   this.columnHeader8 = new System.Windows.Forms.ColumnHeader();
   this.groupBox1.SuspendLayout();
   this.mpGroupBox1.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.intervalTextBox);
   this.groupBox1.Controls.Add(this.label3);
   this.groupBox1.Controls.Add(this.windSpeedComboBox);
   this.groupBox1.Controls.Add(this.label2);
   this.groupBox1.Controls.Add(this.temperatureComboBox);
   this.groupBox1.Controls.Add(this.label1);
   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, 104);
   this.groupBox1.TabIndex = 0;
   this.groupBox1.TabStop = false;
   this.groupBox1.Text = "Settings";
   // 
   // intervalTextBox
   // 
   this.intervalTextBox.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
        | System.Windows.Forms.AnchorStyles.Right)));
   this.intervalTextBox.BorderColor = System.Drawing.Color.Empty;
   this.intervalTextBox.Location = new System.Drawing.Point(168, 68);
   this.intervalTextBox.Name = "intervalTextBox";
   this.intervalTextBox.Size = new System.Drawing.Size(278, 20);
   this.intervalTextBox.TabIndex = 5;
   // 
   // label3
   // 
   this.label3.Location = new System.Drawing.Point(16, 72);
   this.label3.Name = "label3";
   this.label3.Size = new System.Drawing.Size(150, 16);
   this.label3.TabIndex = 4;
   this.label3.Text = "Refresh interval (minutes):";
   // 
   // windSpeedComboBox
   // 
   this.windSpeedComboBox.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
        | System.Windows.Forms.AnchorStyles.Right)));
   this.windSpeedComboBox.BorderColor = System.Drawing.Color.Empty;
   this.windSpeedComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
   this.windSpeedComboBox.Location = new System.Drawing.Point(168, 44);
   this.windSpeedComboBox.Name = "windSpeedComboBox";
   this.windSpeedComboBox.Size = new System.Drawing.Size(278, 21);
   this.windSpeedComboBox.TabIndex = 3;
   // 
   // label2
   // 
   this.label2.Location = new System.Drawing.Point(16, 48);
   this.label2.Name = "label2";
   this.label2.Size = new System.Drawing.Size(120, 16);
   this.label2.TabIndex = 2;
   this.label2.Text = "Wind speed shown as:";
   // 
   // temperatureComboBox
   // 
   this.temperatureComboBox.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      (((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Left)
        | System.Windows.Forms.AnchorStyles.Right)));
   this.temperatureComboBox.BorderColor = System.Drawing.Color.Empty;
   this.temperatureComboBox.DropDownStyle = System.Windows.Forms.ComboBoxStyle.DropDownList;
   this.temperatureComboBox.Location = new System.Drawing.Point(168, 20);
   this.temperatureComboBox.Name = "temperatureComboBox";
   this.temperatureComboBox.Size = new System.Drawing.Size(278, 21);
   this.temperatureComboBox.TabIndex = 1;
   // 
   // label1
   // 
   this.label1.Location = new System.Drawing.Point(16, 24);
   this.label1.Name = "label1";
   this.label1.Size = new System.Drawing.Size(120, 16);
   this.label1.TabIndex = 0;
   this.label1.Text = "Temperature shown in:";
   // 
   // mpGroupBox1
   // 
   this.mpGroupBox1.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.mpGroupBox1.Controls.Add(this.editButton);
   this.mpGroupBox1.Controls.Add(this.searchButton);
   this.mpGroupBox1.Controls.Add(this.removeButton);
   this.mpGroupBox1.Controls.Add(this.citiesListView);
   this.mpGroupBox1.FlatStyle = System.Windows.Forms.FlatStyle.Popup;
   this.mpGroupBox1.Location = new System.Drawing.Point(6, 112);
   this.mpGroupBox1.Name = "mpGroupBox1";
   this.mpGroupBox1.Size = new System.Drawing.Size(462, 240);
   this.mpGroupBox1.TabIndex = 1;
   this.mpGroupBox1.TabStop = false;
   this.mpGroupBox1.Text = "Cities";
   // 
   // editButton
   // 
   this.editButton.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
   this.editButton.Enabled = false;
   this.editButton.Location = new System.Drawing.Point(374, 208);
   this.editButton.Name = "editButton";
   this.editButton.Size = new System.Drawing.Size(72, 22);
   this.editButton.TabIndex = 3;
   this.editButton.Text = "Edit";
   this.editButton.UseVisualStyleBackColor = true;
   this.editButton.Click += new System.EventHandler(this.editButton_Click);
   // 
   // searchButton
   // 
   this.searchButton.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
   this.searchButton.Location = new System.Drawing.Point(214, 208);
   this.searchButton.Name = "searchButton";
   this.searchButton.Size = new System.Drawing.Size(72, 22);
   this.searchButton.TabIndex = 1;
   this.searchButton.Text = "Add";
   this.searchButton.UseVisualStyleBackColor = true;
   this.searchButton.Click += new System.EventHandler(this.searchButton_Click);
   // 
   // removeButton
   // 
   this.removeButton.Anchor =
     ((System.Windows.Forms.AnchorStyles)
      ((System.Windows.Forms.AnchorStyles.Bottom | System.Windows.Forms.AnchorStyles.Right)));
   this.removeButton.Enabled = false;
   this.removeButton.Location = new System.Drawing.Point(294, 208);
   this.removeButton.Name = "removeButton";
   this.removeButton.Size = new System.Drawing.Size(72, 22);
   this.removeButton.TabIndex = 2;
   this.removeButton.Text = "Remove";
   this.removeButton.UseVisualStyleBackColor = true;
   this.removeButton.Click += new System.EventHandler(this.removeButton_Click);
   // 
   // citiesListView
   // 
   this.citiesListView.AllowDrop = true;
   this.citiesListView.AllowRowReorder = true;
   this.citiesListView.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.citiesListView.Columns.AddRange(new System.Windows.Forms.ColumnHeader[]
                                          {
                                            this.columnHeader1,
                                            this.columnHeader2,
                                            this.columnHeader3,
                                            this.columnHeader4,
                                            this.columnHeader5,
                                            this.columnHeader6,
                                            this.columnHeader7,
                                            this.columnHeader8
                                          });
   this.citiesListView.FullRowSelect = true;
   this.citiesListView.Location = new System.Drawing.Point(16, 24);
   this.citiesListView.Name = "citiesListView";
   this.citiesListView.Size = new System.Drawing.Size(430, 176);
   this.citiesListView.TabIndex = 0;
   this.citiesListView.UseCompatibleStateImageBehavior = false;
   this.citiesListView.View = System.Windows.Forms.View.Details;
   this.citiesListView.SelectedIndexChanged += new System.EventHandler(this.citiesListView_SelectedIndexChanged);
   // 
   // columnHeader1
   // 
   this.columnHeader1.Text = "City";
   this.columnHeader1.Width = 125;
   // 
   // columnHeader2
   // 
   this.columnHeader2.Text = "Code";
   this.columnHeader2.Width = 78;
   // 
   // columnHeader3
   // 
   this.columnHeader3.Text = "Satellite image";
   this.columnHeader3.Width = 181;
   // 
   // columnHeader4
   // 
   this.columnHeader4.Text = "Temperature image";
   this.columnHeader4.Width = 201;
   // 
   // columnHeader5
   // 
   this.columnHeader5.Text = "UV Index image";
   this.columnHeader5.Width = 201;
   // 
   // columnHeader6
   // 
   this.columnHeader6.Text = "Winds Image";
   this.columnHeader6.Width = 201;
   // 
   // columnHeader7
   // 
   this.columnHeader7.Text = "Humidity image";
   this.columnHeader7.Width = 201;
   // 
   // columnHeader8
   // 
   this.columnHeader8.Text = "Precipitation image";
   this.columnHeader8.Width = 101;
   // 
   // Weather
   // 
   this.Controls.Add(this.mpGroupBox1);
   this.Controls.Add(this.groupBox1);
   this.Name = "Weather";
   this.Size = new System.Drawing.Size(472, 408);
   this.groupBox1.ResumeLayout(false);
   this.groupBox1.PerformLayout();
   this.mpGroupBox1.ResumeLayout(false);
   this.ResumeLayout(false);
 }