1: <GridViewColumn Header="No">
   2:     <GridViewColumn.CellTemplate>
   3:         <DataTemplate>
   4:             <TextBlock>
   5:                 <Hyperlink Click="Link_Click"
   6:                                   Tag="{Binding}">
   7:                     <Hyperlink.Resources>
   8:                         <Style TargetType="{x:Type Hyperlink}">
   9:                             <Style.Triggers>
  10:                                 <Trigger Property="IsMouseOver" Value="True">
  11:                                     <Setter Property="Foreground" Value="Red" />
  12:                                 </Trigger>
  13:                             </Style.Triggers>
  14:                             <Setter Property="Foreground" Value="LightGreen" />
  15:                         </Style>
  16:                     </Hyperlink.Resources>
  17:                     <TextBlock Text="{Binding COUNT}"/>
  18:                 </Hyperlink>
  19:             </TextBlock>
  20:         </DataTemplate>
  21:     </GridViewColumn.CellTemplate>
  22: </GridViewColumn>

스타일을 만들고 트리거를 줘서 색을 변경한다.

크리에이티브 커먼즈 라이선스
Creative Commons License

   1: <GridViewColumn Header="No">
   2:     <GridViewColumn.CellTemplate>
   3:         <DataTemplate>
   4:             <TextBlock TextAlignment="Right" >
   5:                 <Hyperlink Click="Link_Click" Tag="{Binding}">
   6:                        <TextBlock Text="{Binding COUNT}"/>
   7:                 </Hyperlink>
   8:             </TextBlock>
   9:         </DataTemplate>
  10:     </GridViewColumn.CellTemplate>
  11: </GridViewColumn>

CellTemplate에 <TextBlock><Hyperlink><TextBlock> 순으로 넣는다

크리에이티브 커먼즈 라이선스
Creative Commons License


http://social.msdn.microsoft.com/forums/en-US/windowssdk/thread/dd6f14ed-e582-4b49-9358-64f2afaec151/#

오늘 SDK를 업데이트하고 Xaml 에디터에서 자동완성기능이 죽어서
구글에서 찾은 글이다..

regsvr32 "%CommonProgramFiles%\Microsoft Shared\MSEnv\TextMgrP.dll"

요렇게 커맨드에서 치면 끝.. 간단하다...
크리에이티브 커먼즈 라이선스
Creative Commons License