2023-08-21 22:21:35 +03:00
|
|
|
|
// Copyright (c) Microsoft Corporation.
|
|
|
|
|
// Licensed under the MIT License.
|
|
|
|
|
|
|
|
|
|
namespace Codegen
|
2021-07-06 08:07:06 +03:00
|
|
|
|
{
|
|
|
|
|
public static class XamlNames
|
|
|
|
|
{
|
|
|
|
|
public const string XamlNamespace = "Windows.UI.Xaml";
|
|
|
|
|
public const string TopLevelProjectedType = $"{XamlNamespace}.DependencyObject";
|
|
|
|
|
public const string MuxNamespace = "Microsoft.UI.Xaml";
|
2023-08-02 21:14:56 +03:00
|
|
|
|
public const string WebView2Namespace = "Microsoft.Web.WebView2";
|
2021-07-06 08:07:06 +03:00
|
|
|
|
}
|
|
|
|
|
}
|