Saturday, 4 November 2017

Xamarin Forms Entry Cell [Tutorial 32]


Step1: Create a Table View Sample XAML Page That's All

<TableView>
<TableRoot>
<TableSection Title="Keyboards">
<EntryCell Label="Default" Placeholder="default"/>
<EntryCell Label="Chat" Placeholder="Chats" Keyboard="Chat"/>
<EntryCell Label="Email" Placeholder="sometin@xamarin.com" Keyboard="Email"/>
<EntryCell Label="Numberic" Placeholder="55" Keyboard="Numeric"/>
<EntryCell Label="Telephone" Placeholder="+977-------" Keyboard="Telephone"/>
<EntryCell Label="Text" Placeholder="text" Keyboard="Text"/>
<EntryCell Label=" Url" Placeholder="https://developer.xamarin.com" Keyboard="Url"/>
</TableSection>
<TableSection Title="States and Colors">
<EntryCell Label="Disabled" Placeholder="text" IsEnabled="False"/>
<EntryCell Label="Colorful" Placeholder="text" LabelColor="Red"/>
<EntryCell Label="Colorful + Disabled" Placeholder="text" IsEnabled="False" LabelColor="Blue"/>
</TableSection>
</TableRoot>
</TableView>
view raw MainPage.xaml hosted with ❤ by GitHub
Step2: Hola No More Steps

No comments:

Post a Comment