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

12 строки
321 B
C#
Исходник Обычный вид История

2017-09-28 14:52:27 +03:00
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>();
}
}
}