Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Created November 26, 2019 19:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save rdelrosario/ecdcb26a38223916b95d0bb92beb6d23 to your computer and use it in GitHub Desktop.
Save rdelrosario/ecdcb26a38223916b95d0bb92beb6d23 to your computer and use it in GitHub Desktop.
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