How to limit drawing microsoft ink in input elements such as (text box, check box)?

I want to limit the drawing InkOverlayin the text box and checkbox, but I need to draw a label. How to achieve this.

If i installed

theInkOverlay.AttachMode =InkOverlayAttachMode.Behind; 

It applies to all controls. I need to draw above labels and image controls.

+5
source share
1 answer

InkOverlay objects attach to the window and are either above or above the window. Therefore, your best option is to place two child windows in your dialog box / main window and put your text fields / checkboxes in one window and put the ink overlay in the second window.

0
source

All Articles