23 lines
593 B
C#
23 lines
593 B
C#
using Pixiview.iOS.Renderers;
|
|
using Pixiview.UI;
|
|
using Xamarin.Forms;
|
|
using Xamarin.Forms.Platform.iOS;
|
|
|
|
[assembly: ExportRenderer(typeof(OptionEntry), typeof(OptionEntryRenderer))]
|
|
namespace Pixiview.iOS.Renderers
|
|
{
|
|
public class OptionEntryRenderer : EntryRenderer
|
|
{
|
|
protected override void OnElementChanged(ElementChangedEventArgs<Entry> e)
|
|
{
|
|
base.OnElementChanged(e);
|
|
|
|
var control = Control;
|
|
if (control != null)
|
|
{
|
|
control.BorderStyle = UIKit.UITextBorderStyle.None;
|
|
}
|
|
}
|
|
}
|
|
}
|