v1.3-experimental1 #3406
Replies: 5 comments 6 replies
-
Are any Additional Experimental APIs documented anywhere, or are there plans to add experimental builds to the API reference? |
Beta Was this translation helpful? Give feedback.
-
Something is wrong with this sentence:
|
Beta Was this translation helpful? Give feedback.
-
I tried updating a project using 1.2 stable to 1.3, just updated the package in NuGet Package Exploerer, but then my project won't compile...
Looks like I had to restart Visual Studio after updating? |
Beta Was this translation helpful? Give feedback.
-
Seems like for the new XAML Backdrop APIs to work you have to have both a xaml and a xaml.cs file? Just doing it like this crashes the application with code 3221226107 (0xc000027b): public partial class App : Application
{
public App()
{
this.InitializeComponent();
}
protected override void OnLaunched(Microsoft.UI.Xaml.LaunchActivatedEventArgs args)
{
m_window = new Window();
m_window.SystemBackdrop = new DesktopAcrylicBackdrop();
m_window.Activate();
}
private Window m_window;
} |
Beta Was this translation helpful? Give feedback.
-
What is the recommended way to give feedback on the experimental APIs you don't plan to ship in 1.3? |
Beta Was this translation helpful? Give feedback.
-
1.3 Experimental 1 (1.3.230202101-experimental1) 🧪
The 1.3 experimental release of Windows App SDK is now available! Releases in the experimental channel include features that are in the early stages of development. Experimental features may be removed from the next release, or may never be released. See Windows App SDK release channels for more information about the various release channels.
This release includes bug fixes from 1.2 and provides access to non-stable APIs and features for WinUI 3, Graphics, Content, Dispatching, and Windowing.
Check out the release notes for all of the new and updated features, limitations, and known issues.
Updating to this version
The 1.3.230202101-experimental1 package is available at: https://www.nuget.org/packages/Microsoft.WindowsAppSDK/1.3.230202101-experimental1
Additionally, for those testing deployment of unpackaged apps, download the Windows App SDK Installers and MSIX packages here.
This discussion was created from the release v1.3-experimental1.
Beta Was this translation helpful? Give feedback.
All reactions