Need to format dates in dynamically built WPF DataGrid

后端 未结 8 581
眼角桃花
眼角桃花 2020-12-05 09:51

We are binding an unknown result set to a WPF DataGrid at run time. Some of our columns are going to contain DateTime values and we need to properly format these date time

8条回答
  •  無奈伤痛
    2020-12-05 10:45

    I would use a DataTemplate with a DataType of Date or DateTime (depending on which it will come through as). Place a TextBlock in the DataTemplate with a StringFormat in the binding.

    Something like this should work (untested)

    
        
    
    

    Or if you want it to apply just in the Grid

    
        
            
                
            
        
        ...
    
    

提交回复
热议问题