Skip to content

Instantly share code, notes, and snippets.

@rdelrosario
Created January 10, 2018 20:35
Show Gist options
  • Save rdelrosario/a563ea7d347ed27b7a888c9b576d359b to your computer and use it in GitHub Desktop.
Save rdelrosario/a563ea7d347ed27b7a888c9b576d359b 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"
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