MobileMenuButton.xaml 804 B

12345678910111213141516171819
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <ContentView xmlns="http://xamarin.com/schemas/2014/forms"
  3. xmlns:x="http://schemas.microsoft.com/winfx/2009/xaml"
  4. xmlns:ui="clr-namespace:XF.Material.Forms.UI;assembly=XF.Material"
  5. xmlns:mobile="clr-namespace:InABox.Mobile;assembly=InABox.Mobile.Shared"
  6. x:Class="InABox.Mobile.MobileMenuButton"
  7. x:DataType="mobile:MobileMenuButton">
  8. <ContentView.Resources>
  9. </ContentView.Resources>
  10. <ContentView.Content>
  11. <ImageButton
  12. x:Name="_image"
  13. Source="{Binding Image}"
  14. Clicked="_image_OnClicked"
  15. HeightRequest="{Binding ImageSize.Height}"
  16. WidthRequest="{Binding ImageSize.Width}" />
  17. </ContentView.Content>
  18. </ContentView>