2011-07-11, 08:50 AM
I've got a plugin defined as:
The plugin itself is found (and runs) fine, but I can't get it to appear on the Settings dialog for configuration. The other plugins I've done this with were both derived from IScreenPlugin. I don't really want to have to do that in this case, because the plugin only ever works behind the scenes.
Should it be possible?
Thanks
Iain
Code:
class AudioAdjust : IEventNotification, IPluginConfiguration
{
public SettingsPage GetSettingsPage()
{
// returns new instance of my gui config form
}
}
The plugin itself is found (and runs) fine, but I can't get it to appear on the Settings dialog for configuration. The other plugins I've done this with were both derived from IScreenPlugin. I don't really want to have to do that in this case, because the plugin only ever works behind the scenes.
Should it be possible?
Thanks
Iain