which means the entry "@ [LeftIcon: Enum: Symbol.Favorite]" in the following code:
<DataTemplate x:Key="EmailsItemTemplate" x:DataType="data:Item"> <controls:SlidableListItem HorizontalAlignment="Stretch" LeftIcon="@[LeftIcon:Enum:Symbol.Favorite]" LeftCommand="{x:Bind ToggleFavorite}" RightCommand="{Binding DeleteItem, ElementName=Page, Mode=OneWay}" RightCommandParameter="{Binding}"> <Grid Height="110" Background="Gray"> <StackPanel Grid.Column="1" Margin="10,0,0,0"> <CheckBox IsChecked="{x:Bind IsFavorite, Mode=OneWay}"/> <TextBlock Text="{x:Bind Title}" TextWrapping="NoWrap" Style="{StaticResource CaptionTextBlockStyle}" /> </StackPanel> </Grid> </controls:SlidableListItem> </DataTemplate>
.bindextension. I'll try to look for something about it. Unfortunately, thebind extensionbadly googled, leads to{x:Bind}. - VladD