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
21
votes
3 answers

DataGrid's CellEditingTemplate and focus in edit mode

I am having an issue with WPFToolkit DataGrid when a column is customized supplying both CellTemplate and CellEditingTemplate. If you take a look below, you will see my editing template has a single CheckBox. All is fine in a functional sense but…
wpfwannabe
  • 14,587
  • 16
  • 78
  • 129
20
votes
4 answers

Hide legend of WPF Toolkit chart with more than one data series

I am trying to use charts from the WPF Toolkit (with LineSeries) and I don't want a legend at all. I need this since I have 10 such charts each with data from a different source and I would like to draw one legend for all 10, to save screen real…
sprite
  • 3,724
  • 3
  • 28
  • 30
20
votes
7 answers

WPF Toolkit DatePicker Month/Year Only

I'm using the Toolkit's Datepicker as above but I'd like to restrict it to month and year selections only, as in this situation the users don't know or care about the exact date .Obviously with the data being stored in a Datetime format there will…
ChrisFletcher
  • 1,010
  • 2
  • 14
  • 31
20
votes
5 answers

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 styles to use in WPF. Please take a look at the screenshots and judge…
Shimmy Weitzhandler
  • 101,809
  • 122
  • 424
  • 632
19
votes
1 answer

WPF Toolkit Charting and IndependentValueBinding, IndependentValuePath

I'm facing a problem with the charting engine from the WPF toolkit. I haven't moved the data to a proper object model, so the ItemSource is backed with a DataView. First attempt
Joel Barsotti
  • 3,031
  • 7
  • 35
  • 59
18
votes
3 answers

Unknown Build Error using WPF Toolkit

I installed the Feb 2010 WPF Toolkit as I'm interested in evaluating the AutoCompleteBox control and I'm having extremely limited success. I can get the control to work, but as soon as I try and set any of it's properties in XAML, I get the…
CatBusStop
  • 3,347
  • 7
  • 42
  • 54
18
votes
3 answers

WPF Datagrid with some read-only rows

I have the need to show some of my WPF Datagrid rows as read only or not depending on a property on my bound model. How can this be done?
joerage
  • 4,863
  • 4
  • 38
  • 48
17
votes
3 answers

WPF ComboBox not updating source

I'm trying to get a WPF combobox working (inside the WPFToolkit Datagrid), and I'm having trouble getting all the pieces aligned correctly. I'm using Linq to Entities, and I'm setting the overall datacontext to the results of a Linq…
Ken Smith
  • 20,305
  • 15
  • 100
  • 147
17
votes
13 answers

Could not load file or assembly 'Xceed.Wpf.Toolkit

I'm developing an add-in for another application, Autodesk Revit, which is built as a separate DLL class library. I'm trying to use the Wpf Tool Kit Property grid in one of my WPF windows. The property grid displays fine in Visual studio, and…
Eric Anastas
  • 21,675
  • 38
  • 142
  • 236
16
votes
6 answers

DatePicker.SelectedDate not changing when Text is input

When my users select a date via the Calander control within the DatePicker, the value gets correctly bound to the underlying object. BUT, if the user types the date within the DatePicker, then clicks a button, the text is not set to the SelectedDate…
Nathan Tregillus
  • 6,006
  • 3
  • 52
  • 91
16
votes
2 answers

WPF Toolkit: how to scroll datagrid to show selected item from code behind?

I tried the following, all of which fail on function ScrollIntoView and give a NullReferenceException: // doesn't work grid.SelectedItem = sItem; grid.ScrollIntoView(sItem); // doesn't work grid.SelectedItem =…
Akash Kava
  • 39,066
  • 20
  • 121
  • 167
14
votes
4 answers

WPF Toolkit DataGrid column resize event

I am using WPF Toolkit Datagrid in one of the applications I am working on. What I want is to store the column width and displayindex as a user preference. I have achived it for column displayindex but for resize I could not find any event on the…
Pravin
  • 650
  • 1
  • 7
  • 17
14
votes
5 answers

Unable to set DataGridColumn's ToolTip

I tried the following: And I don't see any tool tip. Any ideas? Is it even implemented?
Shimmy Weitzhandler
  • 101,809
  • 122
  • 424
  • 632
14
votes
2 answers

Is it possible to rearrange tab items in tab control in wpf?

Is it possible to rearrange tab items in tab control in run time? For example I have 3 tab items which are about cars and 4 tabs about house. I want to be able to rearrange them using drag and drop. Is it possible or it is something fantastic? I…
Firdavs Kurbonov
  • 1,252
  • 4
  • 16
  • 42
13
votes
4 answers

How do I create a new row in WPF DataGrid when it is bound to an XmlDataProvider?

I have a project with an XmlDataProvider bound to a WPF DataGrid control. I have the bindings on the DataGrid set up as follows:
bluepolystyreneman
  • 131
  • 1
  • 1
  • 3
1
2
3
68 69