or
<DataTemplate x:Key="ValueWithFormatCellTemplate"> <Grid Background="{Binding BackgroundBrush}"> <Border BorderBrush="{Binding BorderBrush}" BorderThickness="1"> <TextBlock FontWeight="{Binding FontWeight}" Foreground="{Binding ForegroundColor}" Text="{Binding}" ToolTip="{Binding ToolTip}" /> </Border> </Grid> </DataTemplate>private <span style="font-size: 14px;">CustomGanttCollection _children</span><br>public <span style="font-size: 14px;">CustomGanttCollection Children<br></span>{<br><span class="Apple-tab-span" style="white-space:pre"> </span>get<br><span class="Apple-tab-span" style="white-space:pre"> </span>{<br><span class="Apple-tab-span" style="white-space:pre"> </span>return _children;<br><span class="Apple-tab-span" style="white-space:pre"> </span>}<br>}<Style x:Key="CellStyle1" TargetType="{x:Type tk:GridViewCell}"> <Setter Property="ToolTip" Value="{Binding RelativeSource={RelativeSource Mode=Self}, Path=Content.Text}" /> </Style>