我有一个使用wpf中的stackpanel填充的listview。单击星号值文本块时,我想获得每一行的pooja_name。
<ListView x:Name="bookedlist" HorizontalAlignment="Left" Height="449" Margin="679,238,0,0" VerticalAlignment="Top" BorderBrush="#00828790" Background="Transparent" Focusable="False">
<ListView.ItemTemplate>
<DataTemplate>
<StackPanel x:Name="stackkk" Orientation="Horizontal" >
<Border BorderThickness="0.5" BorderBrush="#FFB0AEAE">
<TextBlock Text="{Binding Pooja_name}" TextAlignment="Left" Margin="5" Width="250"/>
</Border>
<Border BorderThickness="0.5" BorderBrush="#FFB0AEAE">
<TextBlock Text="{Binding Name}" TextAlignment="Left" Margin="5" Width="250"/>
</Border>
<Border BorderThickness="0.5" BorderBrush="#FFB0AEAE">
<TextBlock Text="{Binding Star}" TextAlignment="Left" MouseLeftButtonDown="Star_function" Margin="5" Width="95"/>
</Border>
</StackPanel>
</DataTemplate>
</ListView.ItemTemplate>
</ListView>
使用模型类填充列表视图
public class Booked
{
public string Pooja_name { get; set; }
public string Name { get; set; }
public string Star { get; set; }
}
和一个jsonarray
JArray bookedpoojalist = JArray.Parse(bookedval);
List<Booked> booked = JsonConvert.DeserializeObject<List<Booked>>(bookedpoojalist.ToString());
bookedlist.ItemsSource = booked;
当星号文本块MouseLeftButtonDown激活时,我想获得字母名称。
答案 0 :(得分:0)
将DataContext
参数的sender
投射到Booked
:
private void Star_function(object sender, MouseButtonEventArgs e)
{
TextBlock textBlock = (TextBlock)sender;
Booked booked = textBlock.DataContext as Booked;
if (booked != null)
{
string s = booked.Pooja_name;
//...
}
}