Binding a ListView:
ItemsSource="{Binding Path=DF.DocFieldEnum1rows, Mode=OneWay}".  
DF.DocFieldEnum1rows is List<DocFieldEnum1row>. 
Item template binding:
<Button  Content="{Binding Path=FieldEnum1Row.StrValue, Mode=OneWay}" 
    Click="Button_Click" />.  
In the Button_Click I get access to the Path=FieldEnum1Row.StrValue value, but how can I  get access to the source DocFieldEnum1row?
The DataContext of your Button should be the instance of the row.
private void buttonClickHandler(object sender, EventArgs e)
{
    Button b = (Button)sender;
    var row = (YourRowType)b.DataContext;
}
 
         
                                         
                                         
                                         
                                        ![Interactive visualization of a graph in python [closed]](https://www.devze.com/res/2023/04-10/09/92d32fe8c0d22fb96bd6f6e8b7d1f457.gif) 
                                         
                                         
                                         
                                         加载中,请稍侯......
 加载中,请稍侯......
      
精彩评论