Advertisement
Guest User

Untitled

a guest
May 22nd, 2018
60
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C# 2.29 KB | None | 0 0
  1. <local:ZoomScroolView BackgroundColor="White">
  2.                 <AbsoluteLayout x:Name="Map">                      
  3.                     <Image x:Name="JitMap"
  4.                            Source="map.png"
  5.                            Aspect="AspectFit"
  6.                            VerticalOptions="Start"
  7.                            AbsoluteLayout.LayoutBounds="0, 0, 1, 1"
  8.                            AbsoluteLayout.LayoutFlags="All"
  9.                            SizeChanged="Handle_SizeChanged"/>
  10.                     <Image x:Name="UserCircle"
  11.                            Source="circle.png"
  12.                            IsVisible="{Binding IsUserCircleVisible}"
  13.                            AbsoluteLayout.LayoutBounds="{Binding UserCirclePosition}"
  14.                            AbsoluteLayout.LayoutFlags="All"/>
  15.                     <Image x:Name="LocalizationPin"
  16.                            Source="localizationpin.png"
  17.                            Scale="0.8"
  18.                            IsVisible="{Binding IsDestinationVisible, Mode=TwoWay}"
  19.                            AbsoluteLayout.LayoutBounds="{Binding DestinationPosition}"
  20.                            AbsoluteLayout.LayoutFlags="All"/>
  21.                     <local:RotationImage Source="arrow.png"
  22.                            AbsoluteLayout.LayoutFlags="All"
  23.                            AbsoluteLayout.LayoutBounds="{Binding DirectionPinPosition}"
  24.                            NextRotation="{Binding UserDirection}"
  25.                            IsVisible="{Binding IsDirectionPinVisible}"
  26.                            />
  27.                     <Label Text="Bluetooth wyłączony. Bluetooth musi być wyłączony, aby w pełni korzystać z aplikacji."
  28.                            BackgroundColor="Silver"
  29.                            HorizontalTextAlignment="Center"
  30.                            VerticalTextAlignment="Center"
  31.                            TextColor="Red"
  32.                            Font="Bold, 23"
  33.                            Opacity="0.8"
  34.                            Scale="0.4"
  35.                            IsVisible="{Binding IsBluetoothEnabled, Mode=TwoWay}"
  36.                            AbsoluteLayout.LayoutBounds="0.5, 1, 2.5, 0.12"
  37.                            AbsoluteLayout.LayoutFlags="All"/>
  38.                     </AbsoluteLayout>
  39.             </local:ZoomScroolView>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement