4

I create this such image column in windows form:enter image description here

How I can create this columns in WPF and handle click on them?

thanks

H.B.
  • 166,899
  • 29
  • 327
  • 400
Arian
  • 12,793
  • 66
  • 176
  • 300

1 Answers1

4

You can use a DataGridTemplateColumn for that. Create a CellTemplate that contains a Button whose Content is an Image, you can style the button to be "invisible" by changing its Template to a simple ContentPresenter.

H.B.
  • 166,899
  • 29
  • 327
  • 400