Seitenhierarchie

  Wiki Navigation

    Loading...


 Recently Updated


 Latest Releases

 MediaPortal 1.32
            Releasenews | Download
 MediaPortal 2.5
            Releasenews | Download


Question

How do I create an Interface for NON-GUI plugins?

Answer

The actual plugin is run from the plugin/process folder, but to get it to show up in the configuration window (and get to the plugins setup screens) you have to have a copy in the plugins/windows folder too

namespace MediaPortal.GUI.Library
{
  public interface IPlugin
  {
    void Start();
    void Stop();
  }
}

Source: : https://github.com/MediaPortal/Medi...portal/WindowPlugins/GUISudoku/CellControl.cshttps://github.com/MediaPortal/Medi...al/WindowPlugins/GUITetris/MyTetrisControl.cshttps://forum.team-mediaportal.com/interface_non_gui_plugins-t538.html (by Frodo)

   

 

This page has no comments.