Quantcast
Channel: Xamarin.Forms — Xamarin Community Forums
Viewing all articles
Browse latest Browse all 77050

Custom CardView dynamic binding

$
0
0

i want to achieve list of card layout like structure where each Card has got image , label , separator buttons included. controls in card depends on some type condition.

To start up I was looking to build UI similar to image in http://stackoverflow.com/questions/30807313/how-to-add-a-separator-space-between-rows-on-custom-xamarin-forms-viewcell/33919041#33919041

I am trying to build Xaml for Xamarin , I am able to get the UI But the label is not getting binded. (Android Platform)

Also tried Text="{Binding Name}" for label. But not getting any labels rendered. Do i need to write up any additional code ?

<ContentPage.Content>
   <ListView SelectedItem="{Binding SelectedResult}" x:Name="listview1" ItemsSource="{Binding QueryResults}">
  <ListView.ItemTemplate>
  <DataTemplate>
      <ViewCell>

            <Frame Padding="0,0,0,10">
          <Frame.Content>
            <Frame Padding="15,15,15,15"  HeightRequest="36" OutlineColor="Aqua" BackgroundColor="Blue">
              <Frame.Content>
                <StackLayout Padding="20,0,0,0"  Orientation="Horizontal" HorizontalOptions="StartAndExpand">
                  <Label Text="label text for test" TextColor="Yellow">

                  </Label>
                  </StackLayout>

              </Frame.Content>

            </Frame>
          </Frame.Content>

        </Frame>

    </ViewCell>
  </DataTemplate>
</ListView.ItemTemplate>

Viewing all articles
Browse latest Browse all 77050

Trending Articles



<script src="https://jsc.adskeeper.com/r/s/rssing.com.1596347.js" async> </script>