Custom tool windows can't show
I just installed the last version of FastReport.NET, my custom tool window can't show, although it appears in view menu.
I click MyTool menu, but nothing is showing.
It's ok at previous version of March.
I can't find problem. can you help me?
Mycode like this:
DesignerPlugins.Add(typeof(MyTool));
public class MyTool : ToolWindowBase
{
public MyTool(Designer designer) : base(designer)
{
this.Text = "MyTool";
this.Name = "MyTool";
...
}
public override void UpdateContent()
{
base.UpdateContent();
...
}
}
I click MyTool menu, but nothing is showing.
It's ok at previous version of March.
I can't find problem. can you help me?
Mycode like this:
DesignerPlugins.Add(typeof(MyTool));
public class MyTool : ToolWindowBase
{
public MyTool(Designer designer) : base(designer)
{
this.Text = "MyTool";
this.Name = "MyTool";
...
}
public override void UpdateContent()
{
base.UpdateContent();
...
}
}
Comments
Tool windows behavior was changed some time ago (when we move to another docking library). I need to correct something to make it work. I'll let you know when I done.
Thank you very much.
Try with the latest version, it should work now.