Hi, i have a list of label and i have to add into a label a text and then a counter. The counter must be a circle with a number in it.
This is the code of the counter:
<Grid> <Grid.ColumnDefinitions> <ColumnDefinition Width="6*" /> <ColumnDefinition Width="4*" /> </Grid.ColumnDefinitions> <cr:ExtendedLabel x:Name="InnerLabel" Grid.Column="0" FontSize="25" FontWeight="Normal" HorizontalOptions="FillAndExpand" HorizontalTextAlignment="End" TextColor="White" VerticalOptions="CenterAndExpand" VerticalTextAlignment="Center" /> <Label x:Name="Etichetta" Text="1" Grid.Column="1" HorizontalTextAlignment="Start"/> </Grid>
This code just to that...
Does anyone knows how to do that circle for the counter?
Thanks a lot