0
votes
0answers
4 views
Bind WPF Calendar to a date-range?
Is there a way to bind WPF calendar to 2 date fields as a date-range (i.e. start date and end-date)?
0
votes
2answers
22 views
How can I programatically create a WPF Toolkit DataGridTemplateColumn?
I was able to recreate this XAML DataGridTextColumn:
<tk:DataGridTextColumn
Binding="{Binding FirstName}"
Header="First Name"/>
in code like this:
DataGridTextCol …
0
votes
1answer
8 views
Freezing a DataGridTextColumn in WPF
I would like to freeze a DataGridTextColumn in WPF but it looks like there is not a property for that in that class specifically. However, looking at the source for the WPFToolkit, …
0
votes
2answers
30 views
How do I change the background color of a cell using WPF Toolkit Datagrid
I'm using the WPF toolkit datagrid, and I'd like to set the background color of a cell, not the row, based on the content of the cell.
For the sake of simplicity, lets say the col …
0
votes
2answers
34 views
how to get the wpf toolkit datagrid to show new rows when bound to dataset
Is there a way to get the wpf toolkit datagrid to show new rows when its bound to a dataset? In other words, I have a datagrid, I've set its Itemssource to a DataTable, and everyth …
0
votes
1answer
31 views
WPF Toolkit DataGrid MultiSelect with MVVM - Please Help
Hi,
We're using the WPF DataGrid from the WPF Toolkit and are employing MVVM. I'm finding some challenges in using MultiSelect in MVVM and am sure that I'm just missing something …
0
votes
1answer
16 views
DataGridTextColumn.MaxLength?
How do I set the MaxLength property of the DataGridTextColumn?
0
votes
0answers
38 views
WPF DataGrid style Silverlight DataGrid?
That's not a secret: Silverlight's DataGrid default style is beautiful while WPF's is poor.
Instead of reinventing the wheel let me ask the community if anyone has copied the SL s …
0
votes
0answers
18 views
How to use WPF Toolkit Datagrid DataGridTemplateColumn and a combobox?
I have a data grid that looks like this
<tk:DataGrid ItemsSource="{Binding Parents}" AutoGenerateColumns="False">
<tk:DataGrid.Columns>
…
0
votes
1answer
16 views
How can I use the WPF Toolkit Datagrid with XamlPad (latest version)?
I want to work with a DataGrid in XamlPad. How do I reference the WPFtoolkit dll?
I've tried adding a xml namespace reference (below) but w/o any luck.
xmlns:toolkit="clr-namesp …
1
vote
3answers
269 views
conditional formatting in wpf toolkit datagrid
hey i wanna change row foreground color according to a boolean in the model, whats the best way of doing it?
1
vote
1answer
58 views
Problem binding DataGridComboBoxColumn.ItemsSource
Hello!
I have 3 tables:
Item - which is the DataContext - it has a navigation column Group
Group - has a navigation column Category.
I want to have in the DataGrid both (Category …
0
votes
1answer
23 views
WPF Datagrid, Setting the background of combox popup
Hi,
I would like to change the color of the popup background when using a DatagridComboboxColumn in the WPF Toolkit datagrid. I've edited the Template for a normal Combobox and it …
0
votes
2answers
28 views
Unable to set DataGridColumn’s ToolTip
I tried the following:
<tk:DataGridTextColumn
Header="Item"
Binding="{Binding Item.Title}"
ToolTipService.ToolTip="{Binding Item.Description}" />
And I don' …
1
vote
1answer
23 views
Where is DataGrid RowDeleted event??
Hello I am looking for an event I can handle for row deletion.
