0.10.0 breaking change: `HasSystemDecorations="False"` causes window to be full screen on MacOS
See original GitHub issueWindow:
<Window xmlns="https://github.com/avaloniaui"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
xmlns:gif="clr-namespace:AvaloniaGif;assembly=AvaloniaGif"
mc:Ignorable="d" Width="350" Height="200"
x:Class="Bulk_Edit_Calendar_Events_WPF.Windows.Loading"
WindowStartupLocation="CenterScreen"
TransparencyLevelHint="AcrylicBlur" Background="Transparent"
HasSystemDecorations="False">
<Grid>
<Grid.ColumnDefinitions>
<ColumnDefinition Width="*"/>
<ColumnDefinition Width="Auto"/>
</Grid.ColumnDefinitions>
<TextBlock Text="Bulk
Edit
Calendar
Events"
Foreground="White"
VerticalAlignment="Center"
FontFamily="Britannic Bold" FontSize="35" Margin="5"/>
<Image Grid.Column="1" HorizontalAlignment="Right"
gif:GifImage.SourceStream="{Binding CalendarLoadingStream}"/>
</Grid>
</Window>
Window looks as expected on Windows (Windows 10):
But this is how it looks on MacOS (10.13.6 High Sierra):
Issue Analytics
- State:
- Created 3 years ago
- Comments:8 (2 by maintainers)
Top Results From Across the Web
How do I stop macOS from moving my fullscreen windows ...
I'm new to mac, so apologies when this is a basic question, but this is really bothering me and I can't figure out...
Read more >macos - Disable full screen system wide on OS X 10.9.5
Hold down the Option (Alt) key on your keyboard when you click the green maximize button. The window will then zoom the OLD...
Read more >Use apps in full screen on Mac
On your Mac, move the pointer to the green button in the top-left corner of the window, then choose Enter Full Screen from...
Read more >P: Support for native full-screen mode on macOS - Page 10
Hi,. Maximising the window is not supported on Photoshop CC 2017 release under the new Mission Control in High Sierra. As of versions...
Read more >Break free of a fullscreen app on Mac OS X
In OS X 8.2, an app in full screen mode will display the now hidden application menu by moving the cursor to the...
Read more >
Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start Free
Top Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
got same problem months ago: https://github.com/AvaloniaUI/Avalonia/issues/4879
Yup seems to be fixed (I’m on 0.10.6). Thanks for the update!