Peuczynski
Peuczynski

Reputation: 4733

Touch capable webbrowser control for WPF

I am having a problem with embedding webbrowser in WPF application. As you may know the standard webbrowser is not really a WPF component. When you embed the control you cannot apply any transforms on it and is displayed on the topmost layer as it is just wrapper for winforms control.

I have to create app with webbrowser included; the app should rotate to face all four edges of the touch capable screen that will be built into the restaurant table. I've tried Awesomium and CefSharp but touch scrolling works only in winforms components (which is weird cause WPF was designed with touch in mind).

Any ideas? Alternative WPF browser components? The component has to WPF control, be touch responsive and preferably free or cheap.

Upvotes: 1

Views: 2349

Answers (1)

noseratio
noseratio

Reputation: 61666

If it is still relevant, there is a way to make WPF WebBrowser control touch-friendly (IE10+), here is how.

Upvotes: 1

Related Questions