Questions tagged [wpftoolkit]

The WPF Toolkit is a collection of WPF features and components that are being made available outside of the normal .NET Framework ship cycle. The WPF Toolkit not only allows users to get new functionality more quickly, but allows an efficient means for giving feedback to the product team.

Official site:

1022 questions
8
votes
3 answers

Move focus to first column of new row in DataGrid (WPF)

I am binding a DataTable to a DataGrid(WPF toolkit) for add, edit and delete. I am able to use tab keys to navigate through the cells from top to bottom. But as soon as I press tab on last rows' last column, it is not taking the cursor to the first…
joe
  • 589
  • 5
  • 16
8
votes
4 answers

WPF Datagrid Multiple Selection without CTRL or Shift

The WPF Datagrid has two selection modes, Single or Extended. The WPF ListView has a third - Multiple. This mode allows you to click and select multiple rows without CTRL or Shift being held down. Anyone know how to do this for the datagrid?
Aran Mulholland
  • 23,555
  • 29
  • 141
  • 228
8
votes
1 answer

Specify minimum and maximum axis for WPF chart

This is a seemingly simple question but I cannot find a simple answer. I want to specify the minimum and maximum for the existing Y axis on the chart. Here's the chart:
David
  • 15,652
  • 26
  • 115
  • 156
8
votes
3 answers

WPF DataGrid from WPF toolkit vs ListView - any benefits?

I know ListView pretty well, but never looked at DataGrid. My question is simple - if you do not need editing in the list, does DataGrid provide any benefits comparing to ListView? Also, are there disadvantages of using DataGrid (more complex,…
Sergey Aldoukhov
  • 22,316
  • 18
  • 72
  • 99
7
votes
1 answer

Nested WPF DataGrids

I have a DataGrid (from the toolkit) and I want to nest another DataGrid in the DataGrid.RowDetailsTemplate. The trick is I want to bring back the data from one table in the main grid and then based on row selection go and get additonal detail from…
jvberg
  • 273
  • 3
  • 9
7
votes
1 answer

Animate row disappearance in WPFToolKit DataGrid

I have downloaded WPFToolkit, and I am using the DataGrid provided in this package. I am trying to animate a row disappearance when the row is removed, but I don't know how to do it. Does anyone know how it can be done?
Andy
  • 1,153
  • 4
  • 13
  • 33
7
votes
4 answers

Wpf Toolkit. Bind DataGrid Column Header to DynamicResource

I'm trying to bind DataColumn Header to DynamicResource using following code. Header Text
Oleg
  • 1,100
  • 2
  • 11
  • 16
7
votes
1 answer

disable wpftoolkit chart datapoint

Does anybody know how to turn off the datapoints for a noraml LineSeries in a WPFToolkit chart? I find them to be very annoying, and not useful to my purposes, but I can't find a simple property or anything like that on the class itself.
A.R.
  • 15,405
  • 19
  • 77
  • 123
7
votes
4 answers

Why can't I bind the WPFToolkit DataGrid ItemSource to DataTable?

In a Telerik control, I was able to bind a DataTable directly to the ItemSource, but when I switched to the Codeplex WPFToolkit Datagrid: --- theGrid.ItemsSource = dt; I get this error: Cannot implicitly convert type…
Edward Tanguay
  • 189,012
  • 314
  • 712
  • 1,047
7
votes
1 answer

Datagrid text alignment

I was wondering if anyone had an easy way to get the text in a WPF data grid to be center aligned. I got the data grid to work just fine, but the right text alignment bothered me. I goggled some, and downloaded the wpftoolkit, but the examples…
Mark W
  • 811
  • 2
  • 11
  • 17
7
votes
2 answers

Displaying read only properties in PropertyGrid control

I am using the WPF Extended Toolkit to display the properties of a Team object. Now one of these properties is a collection Persons. No problem I get a nice drop down, which when I click on shows me the names and ages of each of these people. Now…
openshac
  • 4,966
  • 5
  • 46
  • 77
7
votes
2 answers

How do you port a theme from Silverlight to WPF?

It's "easy"! I just came across this blog post by Rudi Grobler that says it's "easy" to port a theme from Silverlight to WPF. Unfortunately, he doesn't say how to do it. Download and install I have installed both the WPF Toolkit and Silverlight…
devuxer
  • 41,681
  • 47
  • 180
  • 292
7
votes
1 answer

Root Cause: Recursive call to Automation Peer API is not valid

We've used WPF Tookit DataGrid and .NET 3.5 for about 2 years. And we've got two cases which throw exception - "Recursive call to Automation Peer API is not valid". It's quit strange and eratic, very few PCs has such issue. Case One: A dropdown…
7
votes
2 answers

ContextMenu's MenuItem DataContext returns old items

I am using a ContextMenu within a LongListSelector so that I can delete some items in the list bounded to the LLS. I am following a recent guide here in order to implement the LLS (though I am not using the JumpList). The only thing I've changed is…
Poken1151
  • 570
  • 5
  • 20
7
votes
3 answers

WPF DataGrid: How do you get the content of a single cell?

How do you get the content of a single cell of a WPF toolkit DataGrid in C#? By content I mean some plain text that could be in there.
Partial
  • 9,529
  • 12
  • 42
  • 57