Hi,
I had created a GridView using ListView and Binded data in it.How i can get the value (or)Content of SelectedRow of a Particular Column in Gridview.
Below is code xaml code.
<ListView ItemContainerStyle="{StaticResource CustomListViewItemStyle}" AlternationCount="2" BorderBrush="Black" BorderThickness="0"
Name="listviewRecentHistory" ItemsSource="{Binding}" Height="Auto" Width="880" HorizontalAlignment="Left" Background="Transparent" SelectionChanged="listviewRecentHistory_SelectionChanged">
<ListView.View>
<GridView>
<GridViewColumn Width="60" Header="Job Id">
<GridViewColumn.CellTemplate>
<DataTemplate >
<Label>
<Hyperlink Cursor="Hand" Click="hyperlink_Click" >
<TextBlock Name="text" Text="{Binding JobID}" ToolTip="{Binding BatchID}">
</TextBlock>
</Hyperlink>
</Label>
</DataTemplate>
</GridViewColumn.CellTemplate>
</GridViewColumn>
Syed Shakeer Hussain