maui-linux/Xamarin.Forms.Platform.GTK/PlatformRenderer.cs

14 строки
266 B
C#

using Gtk;
namespace Xamarin.Forms.Platform.GTK
{
internal class PlatformRenderer : EventBox
{
public PlatformRenderer(Platform platform)
{
Platform = platform;
}
public Platform Platform { get; set; }
}
}