InputPanel shared between several forms?!
I have a .NET CF 2.0 application with several Forms each with an InputPanel control.
I got a similar error to the one described in this post:
http://forums.microsoft.com/MSDN/ShowPost.aspx?PostID=1441229&SiteID=1
As advised in the cited post, I make sure to dispose all the controls of the form before disposing the form itself but still I have the same bug.
While debugging my application I noticed that if I set a breakpoint in a inputPanel_EnabledChanged event handler, the debugger stops at it, even if it is not the event handler from the method I am debugging! It looks like .NETCF shares the same instance of the SIP across all the forms. Is this some known bug?
Thanks.

