I have a dockpane that was working pretty well, I was testing how it might come up if I docked it, so I set dock= to "group" in the config.daml file. The dockpane no longer shows up, when I click the button to show the dockpane it turns gray. I changed it back to "float" (i actually used ctrl-z to undo changing it to "group", in case I typed something wrong. It still just has the grayed out button, without opening the dockpane, so I guess I broke something? I tried debugging code but when I break it just shows that it's in "break mode". The code for the button is below, none of that has changed. I put a breakpoint on the onclick event and it never hit it, so for some reason it's not being called when I click the button?
internal class dpIDTools_ShowButton : Button
{
protected override void OnClick()
{
dpIDToolsViewModel.Show();
}
}
This is in the config.daml:
<dockPanes>
<dockPane id="CustomIDDockPane_dpIDTools" caption="dpIDTools" className="dpIDToolsViewModel" dock="float" dockWith="esri_core_projectDockPane">
<content className="dpIDToolsView" />
</dockPane>
</dockPanes>
Thanks in advance for any suggestions that may help me resolve this.
Jeff