docs-maui
docs-maui copied to clipboard
This repository contains documentation for .NET Multi-platform App UI (MAUI).
Todo before merge: * waiting on merge: https://github.com/dotnet/maui/pull/20365 * Retrieve Net 8 version that this will be released on to add as a note to the Multi Template section *...
Can C# equivalents be added for xaml. Maui supports creating UIs with no xaml, it would be great if reading through all the documentation you could do it without xaml....
Related https://docs.microsoft.com/en-us/appcenter/test-cloud/frameworks/uitest/xamarin-forms?tabs=windows
This issue is to track the review portion of the MVVM module --- [Associated WorkItem - 227383](https://dev.azure.com/msft-skilling/Content/_workitems/edit/227383)
Add content on how to add an iOS service extension to a MAUI project. This is supported, but there's no project template for it. Instead, it'll require re-using the project...
From .NET MAUI 9 Preview 3+, Mac Catalyst requires a minimum deployment target of 15.0: ``` ILLINK : error MT0073: Microsoft.MacCatalyst 17.2.9331 does not support a deployment target of 13.1...
If you set `Preferences.Default.Set("NSQuitAlwaysKeepsWindows", false);` in your Mac Cat application, the application directory in the Saved Application State directory will automatically be deleted when you exit the app properly. https://github.com/dotnet/maui/issues/17841#issuecomment-1768083722
The splash screen on iOS simulators are sometimes black if you are not using a developer certificate. Splash screens will still appear on older simulators (such as iOS 15.5) or...
In MAUI.Controls, the value of `ClipsToBounds` is provided by the `IsClippedToBounds` property of Layout. For migration convenience from Xamarin.Forms, the `IsClippedToBounds` property defaults to `false`, so layouts in MAUI.Controls _do...
### Type of issue Missing information ### Description In the example for creating a menu bar, it shows an example of using data binding to handle the event. Example: >...