Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Created January 12, 2018 22:34
Show Gist options
  • Save rdelrosario/efe86468acd52a81272d9e845cb7ac1b to your computer and use it in GitHub Desktop.
Save rdelrosario/efe86468acd52a81272d9e845cb7ac1b to your computer and use it in GitHub Desktop.
<?xml version="1.0" encoding="utf-8"?>
<ContentPage xmlns="http://xamarin.com/schemas/2014/forms"
xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
xmlns:local="clr-namespace:SegmentedControlSample"
x:Class="SegmentedControlSample.SegmentedControlSamplePage">
<StackLayout Padding="0,5">
<local:SegmentedBarControl ValueChanged="Handle_ValueChanged"
x:Name="segment"
AutoScroll="true"
TextColor="Black"
SelectedTextColor="Navy"
SelectedLineColor="Navy"/>
<Label FontAttributes="Bold"
FontSize="Large"
x:Name="ItemSelectedText"
HorizontalOptions="CenterAndExpand"
VerticalOptions="CenterAndExpand"/>
</StackLayout>
</ContentPage>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment