Hi,
I am using Extended WPF Toolkit version 2.0.0 for .net 4.5. We are developing WPF application and use WindowContainer with inner ChildWindow to show custom dialog windows within application within MVVM pattern. App runs on classical Windows 8.
All works fine on normal Windows 8 with mouse. However when trying to hit button on Windows 8 with touch screen only, the command bound to button inside ChildWindow does not get executed on button touch down. The button does get focus but is not probably pressed. All other buttons outside of WindowContainer,ChildWindow work fine. Is there touch event consumed by the child window somehow?
Are you aware of this and would you happen to know a solution please?
Cheers,
Petr
Comments: ** Comment from web user: petrpelnar **
I am using Extended WPF Toolkit version 2.0.0 for .net 4.5. We are developing WPF application and use WindowContainer with inner ChildWindow to show custom dialog windows within application within MVVM pattern. App runs on classical Windows 8.
All works fine on normal Windows 8 with mouse. However when trying to hit button on Windows 8 with touch screen only, the command bound to button inside ChildWindow does not get executed on button touch down. The button does get focus but is not probably pressed. All other buttons outside of WindowContainer,ChildWindow work fine. Is there touch event consumed by the child window somehow?
Are you aware of this and would you happen to know a solution please?
Cheers,
Petr
Comments: ** Comment from web user: petrpelnar **
Hi,
thanks for the quick response. This has not fixed it. However by some troubleshooting I was able to fix this by setting the property IsManipulationEnabled to false on the ChildWindow control.