David Britch
David Britch
In .NET MAUI 9 the compatibility layouts are obsoleted. This is unlikely to require any doc/sample updates, but sweep them to be sure. More info: https://github.com/dotnet/maui/pull/23710 and https://github.com/dotnet/maui/pull/24342
In .NET MAUI 9, setting `MainPage` from `Application` is now obsolete. This will require massive updates to docs and samples. More info: https://github.com/dotnet/maui/pull/23692
In .NET MAUI 9, there's a new `HandlerProperties.DisconnectPolicy` API for controlling when `DisconnectHandler` is called. More info: https://github.com/dotnet/maui/pull/23738
In .NET MAUI 9, the `IsEnabled` and `IsVisible` properties in `BackButtonBehavior` have their binding modes changed from `BindingMode.OneTime` to `BindingMode.OneWay`. This may not require any doc updates, but it's worth...
In .NET MAUI 9, there's a `TitleBar` control on Windows that enables the title bar of desktop apps to be customised. More info: https://github.com/dotnet/maui/pull/23019 and https://github.com/dotnet/maui/pull/23845
In .NET MAUI 9, there's a back compatbility switch to use the 0.0.0.0 address: ```csharp / Set this switch to use the LEGACY behavior of always using 0.0.0.0 to host...
.NET MAUI 9 obsoletes the legacy measure calls. Sweep the docs/samples for usage and update. As part of this work a `MeasureView` method has been added as the preferred way...
Update the WebView doc with this info. More info: https://github.com/dotnet/maui/issues/23027#issuecomment-2260199263
### Describe the issue or suggestion This repo contains references to Visual Studio for Mac. Many in VSM-only docs. VSM went out of support on 31st August 2024 (see https://learn.microsoft.com/en-us/visualstudio/releases/2022/what-happened-to-vs-for-mac)....
### Description The `TitleBar` /// says that it can be hidden by setting the `Visibility` property: https://github.com/dotnet/maui/blob/d3784a49dd6b473ca6adc17baa5c32b1742c53ae/src/Controls/src/Core/TitleBar/TitleBar.cs#L12 It should say the `IsVisible` property (I've verified this). `Visibility` is an enum....