How to Stop Annotation without right click on Windows Surface Tablet

We are using a custom UI or annotation bar, however, users that are using Surface Tablet cannot stop desktop annotation using any “Right Click” techniques (press and hold). Our annotation bar is not active for users since it’s hidden by the invisible annotation window, we tried to push our annotation control to the top, but it gets hidden after any annotation.

Any suggestions on how to stop annotation or keep our custom window on top of annotations?

Hey @ankocorp.com,

Thanks for using the dev forum! It is nice to see you again.

Are you using a ICustomizedAnnotationController?

Thanks!
Michael

Yes, ICustomizedAnnotationController

var cntrl = CZoomSDKeDotNetWrap.Instance
                    .GetMeetingServiceWrap()
                    .GetAnnotationController()
                    .GetCustomizedAnnotationController(null);

_annotationObject = cntrl.CreateAnnoObj(null);

Hey @ankocorp.com,

I see. In regards to the window not being kept on top, have you tried setting HWND_TOPMOST for the annotation bar window handle?

You can call StopAnnotation on the IAnnotationController to stop annotating.

Thanks!
Michael

This topic was automatically closed 30 days after the last reply. New replies are no longer allowed.