Does anyone know is it possible to achieve an entry like the picture I have attached below? I would like to have a data grid to display data from database. I have tried using Xamarin.Forms.Datagrid but it does not allow rows to be added manually. My objective is to display the parameters in such a manner for easier viewing (similar to excel sheet format) but Xamarin has really limited controls...Just wondering if anyone know any other ways to achieve it?
This is my code for datagrid. I was only able to create Column with names but not the rows.
<dg:DataGrid HeaderHeight="50"
BorderColor="#CCCCCC" HeaderBackground="#E0E6F8">
<dg:DataGrid.Columns>
<dg:DataGridColumn Title="Zone 1"/>
<dg:DataGridColumn Title="Zone 2"/>
<dg:DataGridColumn Title="Zone 3"/>
<dg:DataGridColumn Title="Zone 4"/>
<dg:DataGridColumn Title="Zone 5"/>
<dg:DataGridColumn Title="Zone 6"/>
</dg:DataGrid.Columns>
</dg:DataGrid>


You do not need to create the this kind of Entry.
Do you want to achieve the result like this sceenshot?
If so, you should add this layout in your xaml folder.
If you do not know how to add rows in this control. For example,
<dg:DataGridColumn Title="Team" PropertyName="Name" Width="2*"/>above line have three attribute,
Title,PropertyName,Width.Title: mean first line Team, win, loose, home, percentage titles.Width: mean width of thisColumnIf you want to add data blew the
Title,you should usePropertyNameattribute.In the layout background, you add binding context.
Here is my
MyViewModel.csHere is my
Teamcode.Here is my demo.
https://github.com/851265601/Xamarin.Android_ListviewSelect/blob/master/DataGridDemo1.zip