We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I want to make FluentWindow fullscreen, and I just need to execute the code in order while I'm on Window
WindowStyle = WindowStyle.None; ResizeMode = ResizeMode.NoResize; viewModel.MainWindowWindowState = WindowState.Maximized;
But not on fluentWIndow, it won't cover the whole screen, there will be margins, I tried many times, only in this order to be full screen.
ResizeMode = ResizeMode.NoResize; viewModel.MainWindowWindowState = WindowState.Maximized; WindowStyle = WindowStyle.None;
It's strange
private void ButtonBase_OnClick(object sender, RoutedEventArgs e) { if (viewModel.TitleBarVisibility == Visibility.Visible) { //viewModel.TitleBarVisibility =Visibility.Collapsed; WindowStyle = WindowStyle.None; ResizeMode = ResizeMode.NoResize; viewModel.MainWindowWindowState = WindowState.Maximized; //ResizeMode = ResizeMode.NoResize; //viewModel.MainWindowWindowState = WindowState.Maximized; //WindowStyle = WindowStyle.None; } else { viewModel.TitleBarVisibility = Visibility.Visible; ResizeMode = ResizeMode.CanResize; WindowStyle = WindowStyle.SingleBorderWindow; viewModel.MainWindowWindowState = WindowState.Normal; } }
WindowStyle = WindowStyle.None; ResizeMode = ResizeMode.NoResize; viewModel.MainWindowWindowState = WindowState.Maximized; ``` can fullscreen ### Screenshots _No response_ ### OS version win11 ### .NET version .net 8 ### WPF-UI NuGet version 3.0.4 ### Additional context _No response_
The text was updated successfully, but these errors were encountered:
Any screenshots? Rn it's a bit hard to fully understand your problem.
Sorry, something went wrong.
@X-Yunner If you no longer have a problem, please close this ticket.
No branches or pull requests
Describe the bug
I want to make FluentWindow fullscreen, and I just need to execute the code in order while I'm on Window
But not on fluentWIndow, it won't cover the whole screen, there will be margins, I tried many times, only in this order to be full screen.
It's strange
To Reproduce
Expected behavior
The text was updated successfully, but these errors were encountered: