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
9
votes
0 answers

WPF Toolkit Chart: Positions of Data Point Visualization shifted when changing data values

I use a WPF Toolkit chart to display several line series with data points. I have created styles for the LineDataPoints that use a canvas on which symbols (like a circle) are drawn. Here's one of the style definitions:
Mathias Weyel
  • 809
  • 6
  • 18
9
votes
2 answers

WPF Toolkit Datagrid - Custom Tabbing

I have a WPF Toolkit DataGrid with 3 columns. Only the third column allows data entry - the first two are static (Text descriptions). Is it possible to control tabbing and navigation such that the tab and up-down-left-right buttons will ignore the…
Jason Irwin
  • 1,985
  • 2
  • 29
  • 42
9
votes
1 answer

how can I set the converter binding in the C# code?

I am newbie in WPF and now I am using a 3rd party lib xamChart in my project previously in the XAML i have a Chart and its axis has a Unit which is a int property and I have Unit="{Binding NextStartRow, Converter={StaticResource…
Ted Xu
  • 1,095
  • 1
  • 11
  • 20
9
votes
1 answer

Change margin around plot area and title in WPF Toolkit chart

I am using the Chart control of WPF Toolkit February 2010 release. The chart takes up lots of space relative to the plot area. How do I control the margin around the plot area and title of the chart. This way, I can arrange the 10 charts I need in…
sprite
  • 3,724
  • 3
  • 28
  • 30
9
votes
3 answers

Dynamically resizing an open Accordion

I have an Accordion and the height of its content can be dynamically resized. I would like to see the Accordion dynamically respond to the child item's height, but I'm having trouble doing this.
Andrew Lavers
  • 8,023
  • 1
  • 33
  • 50
9
votes
2 answers

WPF: How do I set the focus on a datagrid to a specific row?

I would like to set the focus on the first row of a data grid. This is what I have so far: Keyboard.Focus(ResultsGrid) If result.Count > 0 Then ResultsGrid.SelectedIndex = 0 End If This will set the focus to the datagrid, but not the row…
Jonathan Allen
  • 68,373
  • 70
  • 259
  • 447
9
votes
2 answers

WpfToolkit AutoCompleteBox ContextMenu not working

In one of my WPF project, I have integrated WPF Toolkit's AutoCompleteBox control. I need a custom Context Menu for this control and I have added one using the ContextMenu property. Unfortunately its not showing the custom created one but showing…
Dennis Jose
  • 1,589
  • 15
  • 35
9
votes
3 answers

DataGridTextColumn.MaxLength?

How do I set the MaxLength property of the DataGridTextColumn?
Shimmy Weitzhandler
  • 101,809
  • 122
  • 424
  • 632
9
votes
4 answers

WPF Toolkit DataGrid Multi-Select: How to get SelectedItems out?

I'm using the WPF Toolkit's DataGrid. I've enabled the property on the DataGrid to allow for multi-selecting of rows. How do I get the SelectedItems out? I'm using an MVVM framework to bind my ViewModel to my View. Thanks!
Shafique
  • 1,828
  • 6
  • 26
  • 36
9
votes
3 answers

Apply Office 2007 themes for WPF application

I am using the RibbonControl from WPF toolkit. It has the Office Blue, Black and Silver themes. But the the theme is not applying for the controls in the window. Is there any solution for that? I am aplying the theme like …
Sauron
  • 16,668
  • 41
  • 122
  • 174
8
votes
1 answer

wpf toolkit line chart without points and with different line colors

I have some chart and I want to add dynamicly LineSeries without DataPoints, just lines with some custom colors. The only way I found to hide data points is: Style style = new Style(typeof(LineDataPoint)); style.Setters.Add(new…
user606521
  • 14,486
  • 30
  • 113
  • 204
8
votes
1 answer

WPF Tab Margins

I have a WPF TabControl, with some TabItems. I want margins on the left and right of the TabItems group, if that makes sense. I'm going to draw some ASCII art below to make the point. I want a fixed margin to the left of tab one, but I also want a…
Michael T
  • 1,367
  • 2
  • 16
  • 27
8
votes
4 answers

Multiple Series Charts with WPFtoolkit

Does anyone of you know the way to create multiple series charts with wpftoolkit? In a nutshell what I want is to have more dependent values for the same independent value. So far I couldn't find any comprehensive mechanism to get this working. Any…
picmate 涅
  • 3,951
  • 5
  • 43
  • 52
8
votes
1 answer

How to create a gap between the columns of a WPFToolkit DataGrid

I have a WPF Data Grid (From the WPF Toolkit as the title indicates) and I want a gap between some Columns, where not even a header is above and you can see the background between. I don't have any idea how to manage this. By the way all my Columns…
Tokk
  • 4,499
  • 2
  • 31
  • 47
8
votes
2 answers

Is there a way to associate a Command with a WPF Toolkit DataGridHyperlinkColumn?

Is there any way I can associate a Command with a DataGridHyperlinkColumn? I've tried this:
dks1983
  • 165
  • 2
  • 8