2017年1月28日土曜日

Xamarin.Forms 最初のラベルを固定、以下をスクロールしたい

元ネタ
https://forums.xamarin.com/discussion/20945/scrollview-in-xaml

<StackLayout Orientation="Vertical" VerticalOptions="FillAndExpand" Spacing="0">

      <Label x:Name="lblHeader" Text="商品詳細" VerticalOptions="Center" HorizontalOptions="Center" FontSize="24"
               TextColor="White" BackgroundColor="Blue" />

      <ScrollView Orientation="Vertical" VerticalOptions="FillAndExpand">
        <StackLayout Orientation="Vertical" VerticalOptions="FillAndExpand">


最初にStackLayoutを配置、Orienrationは当然、Vertical
その後、ヘッダとして固定したい部品を配置する。

それから、再度、StackLayoutを重ね、ScrollViewを配置する。

0 件のコメント:

コメントを投稿