Normal
and...make sure your window id is unique like this:[code]public class MyPlugin : GUIWindow, ISetupForm{ public MyPlugin() { GetID = 8000; //should be unique!!! } public override bool Init() { bool bResult = Load(GUIGraphicsContext.Skin + @"\myplugin.xml"); return bResult; } .....}[/code]make sure that the 8000 is unique. (Each window has its own IDand that the exact same ID is also mentioned in your xml file!(myplugin.xml in this case)Frodo
and...
make sure your window id is unique like this:
[code]
public class MyPlugin : GUIWindow, ISetupForm
{
public MyPlugin()
GetID = 8000; //should be unique!!!
}
public override bool Init()
bool bResult = Load(GUIGraphicsContext.Skin + @"\myplugin.xml");
return bResult;
.....
[/code]
make sure that the 8000 is unique. (Each window has its own ID
and that the exact same ID is also mentioned in your xml file!
(myplugin.xml in this case)
Frodo