12345678910111213141516171819 |
- <?xml version="1.0" encoding="utf-8"?>
- <ContentView xmlns="http://xamarin.com/schemas/2014/forms"
- xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
- xmlns:ui="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
- xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
- x:Class="InABox.Mobile.MobileMenuButton"
- x:DataType="mobile:MobileMenuButton">
- <ContentView.Resources>
- </ContentView.Resources>
- <ContentView.Content>
- <ImageButton
- x:Name="_image"
- Source="{Binding Image}"
- Clicked="_image_OnClicked"
- HeightRequest="{Binding ImageSize.Height}"
- WidthRequest="{Binding ImageSize.Width}" />
- </ContentView.Content>
- </ContentView>
|