The Entry controls in programs using the UWP Xamarin.Forms version of SfDataForm do not look correct
3 Replies
SIGN IN To post a reply.
|
[assembly: ExportRenderer(typeof(CustomEntry), typeof(CustomEntryRenderer))]
public class CustomEntryRenderer : EntryRenderer
{
protected override void OnElementChanged(ElementChangedEventArgs<Entry> e)
{
base.OnElementChanged(e);
if (Control != null)
{
Control.VerticalAlignment = Windows.UI.Xaml.VerticalAlignment.Center;
}
}
} |