Created
January 12, 2018 22:34
-
-
Save rdelrosario/efe86468acd52a81272d9e845cb7ac1b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
<?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