maui-linux/Xamarin.Forms.Platform.UAP/PlatformConfigurationExtens...

12 строки
330 B
C#

namespace Xamarin.Forms.Platform.UWP
{
public static class PlatformConfigurationExtensions
{
public static IPlatformElementConfiguration<PlatformConfiguration.Windows, T> OnThisPlatform<T>(this T element)
where T : Element, IElementConfiguration<T>
{
return (element).On<PlatformConfiguration.Windows>();
}
}
}