Sourabh SIngh

Results 1 comments of Sourabh SIngh
trafficstars

For WinUI 3 App you can use this code App.MainWindow.ExtendsContentIntoTitleBar = true; Microsoft.UI.Windowing.AppWindow _appWindow; _appWindow = GetAppWindowForCurrentWindow(); _appWindow.SetPresenter(AppWindowPresenterKind.FullScreen); private Microsoft.UI.Windowing.AppWindow GetAppWindowForCurrentWindow() { IntPtr hWnd = WindowNative.GetWindowHandle(App.MainWindow); WindowId myWndId = Win32Interop.GetWindowIdFromWindow(hWnd);...