Hi, I'm creating a custom panel which is derived from the Layout and it's children is added with a custom control derived from ContentControl (ContentView) in this case the content = label .
Public GridCell: ContentView
{
/**********/
public GridCell()
{
this.content = new Label();
}
/************/
}
The exact problem am facing is i need a border on the bottom and right of the Label (i.e the content of the ContentView) for which i don't see any options available by default in xamarin.forms.
I tried working on custom Renderer for iOS but got nothing , i knew there may be a way to achieve it can you people please guide me achieve it.
Thanks in advance
Dinesh