Created
November 26, 2019 19:45
-
-
Save rdelrosario/ecdcb26a38223916b95d0bb92beb6d23 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
using System.Collections.Generic; | |
using ExtendedSegmentedTabControl.Models; | |
namespace ExtendedSegmentedTabControl | |
{ | |
public class MainPageViewModel | |
{ | |
public List<TabOption> TabOptions { get; set; } | |
public MainPageViewModel() | |
{ | |
TabOptions=new List<TabOption>() | |
{ | |
{new TabOption(){ Name="Invertebrates"} }, | |
{new TabOption(){ Name="Fish"} }, | |
{new TabOption(){ Name="Amphibians"} }, | |
{new TabOption(){ Name="Reptiles"} }, | |
{new TabOption(){ Name="Birds"} }, | |
{new TabOption(){ Name="Mammals"} } | |
}; | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment