Babylon 3d app is not working in WPF web browser control - c#

For last 2 weeks we were developing a 3d application using Babylon js. When we tried to embed this app inside a WPF application using the WebBrowser control, we were not able to move the 3d object. We tried Chromium browser as well and there it was working fine but it was slow. Can anyone help me to get the solution?

This is because WPF uses a IE based WebView which does not support WebGL

Related

How to detect if my app window has been snapped using Snaplayouts in Windows 11 - WPF, C#

I have implemented "Snap View Support" for my application in Windows 11.
Everthing works fine. But I want to check if the window size or its state has been modified using SnapLayout in WPF C#. Is there any API that could help in resoving this?
Assist me with this.

CefSharp chromium browser font issue

I am working on a wpf application. I am using Cefsharp chromium browser instead of wpf webview. It support all font but its not clear (give blur screen).
We've noticed this issue as well. We found that it goes away if you use WinForms instead of WPF.
Have you tried CefSharp.Wpf?

touch enabled wpf web browser control

I have to create x64 wpf app with webbrowser included, the app should rotate/scale to face all four edges of the touch capable screen that will be built into the table. Suggest me some alternatives to native wpf web browser control. tutorials much appreciated.
if you need to rotate things, Awesomium (as mentioned in #Noeratto's comment) is the only real game in town

Unity3d application as user control

Is it possible use Unity3d app written on C# as part of another WPF or winforms application?
Can i use it as user control?
Yes, it is possible to embed unity exe (PC build) into WPF using WindowsFormsHost.
I'm not sure if it can be used as user control because the unity exe is completely separated from WPF application.
Few time ago, when I had to work with Unity 3d, there was a way to embed it into WebBrowser control.
See this forum for more details.
Hope it can help you.

C# Windows Form Web Browser flash dont work

I'm trying to make inside my app mini web browser. But here is fault. It dont show Flash videos (swf).
Is any method how to repair this fail?
You can show flash videos in the windows webrowser control
To get it working you will need change the CPU type of your project to support x86 ( i.e. 32 bit) because the WebBrowser control provides a managed wrapper for the WebBrowser ActiveX control
MSDN

Categories