This question is locked. New answers and comments are not allowed.
Hello,
I have a template for GridViewCell to display hyperlink. It works fine in GridView Q1, but the new GridView Q2 does not show the border of the cell. Are there changes in the UI element used to display GridViewCell? Here is the tempate:
I have a template for GridViewCell to display hyperlink. It works fine in GridView Q1, but the new GridView Q2 does not show the border of the cell. Are there changes in the UI element used to display GridViewCell? Here is the tempate:
<
Style x:Key="CellIpHyperLinkStyle" TargetType="grid:GridViewCell">
<Setter Property="Template">
<Setter.Value>
<ControlTemplate TargetType="grid:GridViewCell">
<Border BorderThickness="{TemplateBinding BorderThickness}" BorderBrush="{TemplateBinding BorderBrush}" Background="{TemplateBinding Background}"
>
<HyperlinkButton TargetName="_blank" NavigateUri="{Binding IP, Converter={StaticResource IpFormater}}" HorizontalAlignment="Center" VerticalAlignment="Center"
Content="{Binding IP}" >
</HyperlinkButton>
</Border>
</ControlTemplate>
</Setter.Value>
</Setter>
</Style>
