Retrieve Cell Value On MouseEnter In A Multiple Column ListView With Data Binding

后端 未结 1 495
执笔经年
执笔经年 2021-01-29 02:44

I would like to retrieve the value from a Car Name column from a row in a ListView on a MouseEnter event and have the result display in a TextBlock.

1条回答
  •  猫巷女王i
    2021-01-29 03:12

    Try this:

    xaml:

    
        
            
                
            
            
                
                    
                    
                    
                
            
        
        
    
    

    cs:

    private void ListBoxItem_MouseEnter(object s, MouseEventArgs e)
    {
        var item = e.OriginalSource as ListBoxItem;
        var car = item.Content as Car;
        textbox.Text = car.Name;
    }
    

    0 讨论(0)
提交回复
热议问题