Touching a WPF button does sometimes not invoke the click handler under Windows 8
It has turned out to be a BUG in WPF. There is a workaround available until a KB is released.
The workaround is to call Mouse.Synchronize();
in the PreviewTouchDown
event handler of the affected UIElement of MainWindow.
I tested it and it works fine.