removes a fixed height request

main
Paul Schneider 9 years ago
parent 715b12dabe
commit 565caafc09
1 changed files with 6 additions and 7 deletions

@ -15,7 +15,7 @@
</ContentView.Resources> </ContentView.Resources>
<ContentView.Content> <ContentView.Content>
<StackLayout> <StackLayout>
<StackLayout Orientation="Horizontal" HeightRequest="70"> <StackLayout Orientation="Horizontal" >
<Grid> <Grid>
<Grid.Behaviors> <Grid.Behaviors>
<behaviors:StarBehavior x:Name="starOne" GroupName="myStar"/> <behaviors:StarBehavior x:Name="starOne" GroupName="myStar"/>
@ -61,8 +61,7 @@
<Image x:Name="starSelectedFour" <Image x:Name="starSelectedFour"
Source="{extensions:ImageResource BookAStar.Images.Validation.star_selected.png}" Source="{extensions:ImageResource BookAStar.Images.Validation.star_selected.png}"
IsVisible="{Binding Source={x:Reference starFour}, IsVisible="{Binding Source={x:Reference starFour}, Path=IsStarred}" />
Path=IsStarred}"/>
</Grid> </Grid>
<Grid > <Grid >
<Grid.Behaviors> <Grid.Behaviors>
@ -73,9 +72,9 @@
<Image x:Name="starSelectedFive" <Image x:Name="starSelectedFive"
Source="{extensions:ImageResource BookAStar.Images.Validation.star_selected.png}" Source="{extensions:ImageResource BookAStar.Images.Validation.star_selected.png}"
IsVisible="{Binding Source={x:Reference starFive}, IsVisible="{Binding Source={x:Reference starFive}, Path=IsStarred}" />
Path=IsStarred}"/>
</Grid> </Grid>
</StackLayout> </StackLayout>
<StackLayout> <StackLayout>
<StackLayout.Resources> <StackLayout.Resources>

Loading…