示例#1
0
 private void button3_Click(object sender, EventArgs e)
 {
     InputMappingForm inputMappingForm = new InputMappingForm("EventGhostPlus");
     inputMappingForm.ShowDialog();
 }
示例#2
0
 private void InputMapperButton_Click(object sender, EventArgs e)
 {
   if (m_bchangedsettings)
   {
     FindandReplaceNode();
     SaveMapping(m_sRemoteModel);
   }
   doc = null;
   InputMappingForm dlg;
   dlg = new InputMappingForm(m_sRemoteModel);
   dlg.ShowDialog(this);
   LoadMapping(m_sRemoteModel + ".xml", false);
   mpListView.Invalidate();
 }
示例#3
0
 private void buttonMapping_Click(object sender, EventArgs e)
 {
   // Open MediaPortal mapping form
   InputMappingForm mappings = new InputMappingForm("CecRemote");
   mappings.ShowDialog(this);
 }
示例#4
0
    private void buttonCentareaMapping_Click(object sender, EventArgs e)
    {
      InputMappingForm dlg;

      dlg = new InputMappingForm("Centarea HID");

      dlg.ShowDialog(this);
    }
示例#5
0
    private void mpButtonAppCommandMapping_Click(object sender, EventArgs e)
    {
        InputMappingForm dlg;

        dlg = new InputMappingForm("AppCommand");

        dlg.ShowDialog(this);
    }
示例#6
0
 /// <summary>
 /// Open the dialogbox for changing the inputmap.
 /// </summary>
 /// <param name="sender"></param>
 /// <param name="e"></param>
 private void buttonFireDTVMapping_Click(object sender, EventArgs e)
 {
   InputMappingForm dlg = new InputMappingForm("FireDTV");
   dlg.ShowDialog(this);
 }
示例#7
0
 private void buttonIrTransMapping_Click(object sender, EventArgs e)
 {
   // Construct xml file name "IrTrans " + remotename
   string keyfile = "IrTrans " + textBoxRemoteModel.Text.Trim();
   InputMappingForm dlg = new InputMappingForm(keyfile);
   dlg.ShowDialog(this);
 }
示例#8
0
 private void buttonHcwMapping_Click(object sender, EventArgs e)
 {
   InputMappingForm dlg = new InputMappingForm("Hauppauge HCW");
   dlg.ShowDialog(this);
 }
 private void btnMapping_Click(object sender, EventArgs e)
 {
   InputMappingForm dlg = new InputMappingForm("DirectInput");
   dlg.ShowDialog(this);
 }
示例#10
0
 private void buttonHidMapping_Click(object sender, EventArgs e)
 {
   InputMappingForm dlg = new InputMappingForm("General HID");
   dlg.ShowDialog(this);
 }
示例#11
0
    private void buttonMceMapping_Click(object sender, EventArgs e)
    {
      InputMappingForm dlg;

      dlg = new InputMappingForm("Microsoft MCE");

      dlg.ShowDialog(this);
    }
示例#12
0
 // show the setup dialog
 public void ShowPlugin()
 {
     InputMappingForm conf = new InputMappingForm(mappingfile);
     conf.ShowDialog();
 }