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> 
  • Hmm, never seen such a syntax. And where does your code come from? - VladD
  • from the MS kit UWP Toolkit. I watched user controls, and there was a file nameOfControll.xaml.bind, which was all the same as in the usual nameOfControll.xaml, only with such interesting entries. - Arthur
  • @Arthur And where did you find such a file in the UWP Community Toolkit? I can not find. - Raider
  • there was a folder in the folder, but now I can't find anything either. here is similar, but not from there. Link - Arthur
  • @Arthur: Yeah, there it’s in files with the .bind extension. I'll try to look for something about it. Unfortunately, the bind extension badly googled, leads to {x:Bind} . - VladD

0