i'm implementing a C# user control (panel) with a picturebox inside. The picturebox is scaled to zoom in and is code painted (basically a vertical ruler that contains some information in correspondence of some of the values), while the panel is used to provide scrolling capabilities to allow user to view only the part of the image of interest.
Once the image reaches and pass the 32768 size (X or Y) all mouse clicks that have X or Y above this limit will NOT trigger the Click / MouseClick events. Simply not detected at all. I think it's a .NET limit, but i wonder if there is a way to override it.
Thanks