I have a DataGrid (.net framework 3.5, WPFToolKit). And i want to change borders (left or right) of some cells. One, two or three. So how can I get an access to a single cell? And is it possible? I've found some solutions, but they are for .net 4.
相关问题
- VNC control for WPF application
- How to make a .svc file write to asp.net Trace.axd
- WPF Binding from System.Windows.SystemParameters.P
- XAML: Applying styles to nested controls
- How can I add a horizontal line (“goal line”) for
You can extend the DataGrid and add the following, NOTE: it's just a sample, you don't need to do some of the processing that I am doing:
For the definition of
FindVisualChild
, look at this site.