Мне нужно изменить и настроить элемент управления в Xamarin, но мне сложно установить или, скорее, найти способ объявления высоты элемента управления Xamarin ios. Как я могу это сделать? вот мой код.set Высота Внесение визуализации xamarin forms ios
[assembly: ExportRenderer(typeof(MyEntry), typeof(MyEntryRenderer))]
namespace MyApplication.iOS
{
public class MyEntryRenderer : EntryRenderer
{
//CUSTOM entry RENDER IOS
protected override void OnElementChanged(ElementChangedEventArgs<Entry> e)
{
base.OnElementChanged(e);
if (Control != null)
{
Control.BackgroundColor = UIColor.FromRGB(43, 50, 58);
Control.TextColor = UIColor.FromRGB(255, 255, 255);
//Control.Height ???
}
}
}
}
Это решение не работает –
Уход за разработкой? –