lundi 5 février 2018

TableView in Xamarin.Forms


TableView is a control that displays a list similar to the ListView as rows in horizontal orientation but it can present the children added manually in a rich visualization.
In TableView, we can't load the content as a source like ListView (ItemSource), we have to add elements manually.

In this article, I will explain how we can use this control.

1- How to use TableView


  <StackLayout HorizontalOptions = "Center" VerticalOptions = "Center">
            <TableView >
                <TableView.Root>
                    <TableRoot>
                        <TableSection Title="TableView Overview">
                            <TextCell Text="Text cell" Detail="Details"/>
                            <EntryCell Placeholder="Could you introduce something !"/>
                            <SwitchCell  Text = "My Switch" />
                        </TableSection>
                    </TableRoot>
                </TableView.Root>
            </TableView>
</StackLayout>


2- Public property list of TableView

HasUnevenRows property

Gets or sets a value indicating whether it can have non-uniform rows.
By setting the HasUnevenRows property to True, the height will be automatically changed according to the contents of the TableView.
  <TableView HasUnevenRows="True" >

Intent property

Gets or sets the intent of the table.
By using the Intent property, you can change to a TableView that fits your purpose.

Data

A table intended to contain an arbitrary number of similar data entries.
Example in XAML:

 <StackLayout HorizontalOptions = "Center" VerticalOptions = "Center">
            <TableView Intent="Data">
                <TableView.Root>
                    <TableRoot>
                        <TableSection Title="TableView having the property Intent=Data">
                            <TextCell Text="This is Xamarin ! TableView Control!" Detail="Details"/>
                            <EntryCell Placeholder="This is an Entry Cell to introduce a text!"/>
                            <SwitchCell Text="Select Yes/No!"/>
                        </TableSection>
                    </TableRoot>
                </TableView.Root>
            </TableView>
        </StackLayout>

· Menu

A table for use as a menu for selection.

· Settings

A table containing a series of switches, toggles, or other configurable configuration settings.

· Form

A table that is normally used to store the information contained in a form.


Root property

Gets or sets the root of the table.
You can assign cells to TableView by using the Root property. Actually , used it with all the code from the beginning.

RowHeight property

An integer representing the height of the item in the list. If HasUnevenRows is true, this property is ignored.
You can change the cell size by using the RowHeight property.
  <TableView RowHeight="100">

TableView in Code-behind

I will write the following code in the code behind 
InitializeComponent ();


            //iOS only, take a margin at the top
            Padding = new Thickness(0, top: Device.OnPlatform(20, 0, 0), right: 0, bottom: 0);

        // TableView
        var tableView = new TableView
        {
            //Set intent as "Form"
                    Intent = TableIntent.Form,

            //Assign to route
                    Root = new TableRoot("Configuration")
            {
                new TableSection("TableView having the property Intent=Form")
                {
                    //TextCell
                    new TextCell
                    {
                        Text = "This is Xamarin ! TableView Control!",
                        Detail = "Details",
                    },
 
                    //Switch Cell
                    new SwitchCell
                    {
                        Text = "Select Yes/No!"
                    },
 
                    //エントリーセル
                    new EntryCell
                    {
                        Label = "Entry Cell",
                        Placeholder = "This is an Entry Cell to introduce a text!"
                            }
                
                }
            }
        };
            // TableView Place only content as content
            Content = tableView;


Related Posts:

  • NLayered Architecture When we start any project,  we have to think about the architecture and use the best practices and avoid the anti-pattern (http://hamidarebai.blogspot.it/2016/03/do-you-like-spaghetti-or-lasagna.html) ,  To ach… Read More
  • Build persisting Layer with ASP.NET Core and EF Core using Postgresql and Sql Server 2016 Build persisting Layer with ASP.NET Core and EF Core using Postgresql and Sql Server 2016 Source :  https://github.com/didourebai/Samples.AspCoreEF This post is about developing ASP.NET Core application using E… Read More
  • Start with Azure Blob storage using Web API Overview Azure Blob Storage is part of the Microsoft Azure Storage service that is able to  stores unstructured data in the cloud as objects/blobs.  Blob storage s a collection of binary data&n… Read More
  • Minecraft Hour of Code Trying coding in early age, when we are child can give him/her the opportunity to work in logic parts, some kind of games can let you discover if the child is able to think and decide. We started this in some schools but… Read More
  • Retrospective 2016 - Scrum way - Part 1 Why ? The answer is simple : “To change for the better”. Should be Agile not only in our work but in our life ? The answer : Yes ! Tell me how ? When we start a new project with a Product Owner, we focus on the fu… Read More

0 commentaires:

Enregistrer un commentaire