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
6
votes
1 answer

WPF charting toolkit y-axis labels appear as zero for small numbers

I've created a chart using the WPF toolkit (3.5) charting toolkit and I can't get the y-axis labels to display small numbers (e.g. .001). I have set the minimum and maximum values to .001 and .009 respectively for the y-axis and although the chart…
senor_cardgage
  • 65
  • 1
  • 1
  • 6
6
votes
3 answers

VisualStateManager present both in WPF Toolkit and PresentationFramework - How to resolve

I have to use VisualStateManager class in my WPF window, but as I have referenced the assemblies of both WPF Toolkit and PresentationFramework.dll in my project, C# is not able to resolve the VisualStateManager class and gives the compile error like…
S2S2
  • 8,322
  • 5
  • 37
  • 65
6
votes
2 answers

How do I save filter values in WPF toolkit datagrid "filter extension"?

I am using the code (VS2008) I found under the article "Automatic WPF Toolkit DataGrid Filtering", which works very well. It is implemented as a new "style" for a datagrid's header, NOT as an extension of the datagrid itself. My question is how can…
Enrico Cianni
  • 91
  • 1
  • 5
6
votes
1 answer

The type toolkit:BusyIndicator was not found

I'm working on a WPF project with the beginning of a UserControl defined as:
Nick Heidke
  • 2,787
  • 2
  • 34
  • 58
6
votes
4 answers

WPF WebView doesn't show

I'm learning WPF WebView control, I have the below MainWindow.xaml file:
Jeremy Parker
  • 408
  • 2
  • 4
  • 19
6
votes
3 answers

WPF DataGrid Styling

Does anybody know/have an example of how to change WPF DataGrid layout to be something like card-view or anything else, not just stack of rows?
alex
  • 74,215
  • 9
  • 49
  • 57
6
votes
1 answer

How do I set TargetNullValue to a date?

I'm using the WPF toolkit's Calendar control to allow users to select a date. If the date is not yet selected then the property the SelectedDate is bound to is Null. This makes the Calendar default you January 1, 0 AD. I'd like to do something…
Bryan Anderson
  • 15,969
  • 8
  • 68
  • 83
6
votes
1 answer

Set the Background of a DataGridRow based on the content of a cell

Is there a way, using XAML, to dynamically set the background of a row based on the content of one of it's cells? Thanks, Phil
Phil Gan
  • 2,813
  • 2
  • 29
  • 38
6
votes
1 answer

Zoombox from Xceed WPF Toolkit not working

I am experimenting with the Zoombox control from Xceed, but I am having trouble getting it to respond to mouse wheel or pan events. Nothing happens when I use these inputs. Am I missing something in my code or…
Vahid
  • 5,144
  • 13
  • 70
  • 146
6
votes
3 answers

WPF DataGrid doesn't shrink when column width shrinks

I am using a DataGrid in WPF and want it to shrink to only fit the width of its columns. It does this nicely for the initial rendering. When I resize a column to make it wider the grid grows as well. But if I resize the column to make it narrower…
jjrdk
  • 1,882
  • 15
  • 18
6
votes
1 answer

Changing FlowDirection of a cell in Wpf's DataGrid

I Have a DataGrid with its FlowDirection set to "RightToLeft". Problem is when displaying negative numbers, the minus sign is shown on the opposite side. Setting the FlowDirection of the cell itself to "LeftToRight" fixes it, but then the left…
6
votes
3 answers

'IndependentValue' member is not valid because it does not have a qualifying type name in chartinToolkit wpf

i am trying to view the value of aces in my chart but i have the following error "'IndependentValue' member is not valid because it does not have a qualifying type name in chartinToolkit wpf " this is my code
shaymaa adel
  • 85
  • 1
  • 1
  • 6
6
votes
1 answer

How do I move the AvalonDock Anchorable Pane tab to the top instead of the bottom?

I am using AvalonDock in a project and would like to use the Anchorable Pane, but instead of the tab appearing at the bottom, I would like it to appear at the top like it does on a Document Pane. For my project, a Document Pane is not the…
Matt Rockwell
  • 456
  • 1
  • 6
  • 20
6
votes
2 answers

WPF Extended toolkit Wizard validation

I'm using the WPF Extended toolkit Wizard. I'm wondering how I can go about validating that all controls have been filled out on a page before allowing the user to navigate forward. I know I can trap the Next button click in my code behind: private…
David
  • 1,203
  • 6
  • 25
  • 48
6
votes
1 answer

WPF DataGrid - How to move keyboard focus to newly added row after tab press

WPF DataGrid add a new row if we press tab on last column of last row. But after adding the new row, the focus is moved to top row of the grid. How can we make sure that the focus is moved to the first column of new row?
Gopinath
  • 1,858
  • 7
  • 31
  • 50