Glide Text box

How do I trigger “WinConfig_OnTap” after “Glide.OpenKeyboard” closes…
without registering for a "ValueChangedEvent "

Because if I register for "ValueChangedEvent "
at initial stage when the values are loaded into the control it triggers "ValueChangedEvent "

                        tTB.TapEvent += new OnTap(Glide.OpenKeyboard);
                        tTB.ValueChangedEvent += WinConfig_OnTap;

I want to directly do like this
tCB.TapEvent += new OnTap(WinConfig_OnTap);

and in the
private void WinConfig_OnTap(object Object)
{
}

can I call Glide.OpenKeyboard?

@ microt - could you post a complete, but minimal, example with window XML that shows what you are trying to do and what is not working?

I’ve tried this. What they are trying to do is use the keyboard and then when the user completes the editing, act upon it and do this with events.

I don’t think it’s actually possible.

I gave up and added an OK and CANCEL button to each window. This way I left the user to edit the data and when done and OK I process the data input.