Created
January 10, 2018 20:35
-
-
Save rdelrosario/a563ea7d347ed27b7a888c9b576d359b 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" | |
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