dotnet / MobileBlazorBindings

Experimental Mobile Blazor Bindings - Build native and hybrid mobile apps with Blazor
MIT License
1.2k stars 168 forks source link

True Fullscreen on blazor windows #450

Closed vhj1995 closed 2 years ago

vhj1995 commented 2 years ago

I am working on Digital Signage App. My app requires to be Full Screen.

Problem is I cannot hide the taskbar on windows.

Any ideas?

vhj1995 commented 2 years ago

@Eilon can you shed some light on this?

Eilon commented 2 years ago

Hi @vhj1995 , I'm not sure how to do this, but it isn't Mobile Blazor Bindings specific. For the current release, which is based on Xamarin.Forms, it would be the same as for any Xamarin.Forms app.

dcuccia commented 2 years ago

Maybe something like this?

https://social.msdn.microsoft.com/Forums/vstudio/en-US/e231f5be-5233-4eee-b142-7aef50f37287/disabling-andor-hiding-windows-taskbar?forum=csharpgeneral

Per the last comment, I wouldn't recommend this for an app that's meant to be opened and closed, but for a true kiosk with auto-launch etc, it could work.

FWIW, there's also a purpose-built Windows Kiosk Mode feature:

https://docs.microsoft.com/en-us/windows/configuration/kiosk-single-app

vhj1995 commented 2 years ago

Thanks for inputs. @dcuccia and @Eilon