uwp-demos/SfCellGrid/Tutorials/CellComments.xaml

22 строки
1.1 KiB
XML

<Layout:SampleLayout x:Class="CellGridSamples.Cell_Comments"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:Layout="using:Common"
xmlns:cellGrid="using:Syncfusion.UI.Xaml.CellGrid"
xmlns:d="http://schemas.microsoft.com/expression/blend/2008"
xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
mc:Ignorable="d">
<Grid x:Name="grid" Background="{ThemeResource ApplicationPageBackgroundThemeBrush}">
<cellGrid:SfCellGrid x:Name="cellGrid">
<cellGrid:SfCellGrid.Resources>
<DataTemplate x:Key="ImageTemplate">
<Image x:Name="Image"
Height="22"
Source="{Binding CellValue}" />
</DataTemplate>
</cellGrid:SfCellGrid.Resources>
</cellGrid:SfCellGrid>
</Grid>
</Layout:SampleLayout>