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

12 строки
321 B
C#

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