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

IntegerUpDown triggering parent control SelectionChanged event

I have a ListBox control with IntegerUpDown in each ListBoxItem. Everything works fine, but when the IntegerUpDown reaches the min or the max I set, If I click on the disabled arrows it'll trigger a selectionchanged event for the listbox. Disabled…
sponge
  • 31
  • 4
-1
votes
1 answer

How To Handle Chart Series With Incompatible Ranges?

I made two Charts. In both of them is one single linechart. They have different values on the x- and y-axis. But I want to show them both at the same time. So I have to make the background and axis of the second chart transparent. Only the line…
L4c0573
  • 333
  • 1
  • 7
  • 23
-1
votes
1 answer

How to add AutoCompleteBox into Datagrid column?

How to add AutoCompleteBox() into a Datagrid Column ?
Sathish Bowatta
  • 151
  • 1
  • 1
  • 8
-1
votes
1 answer

WPF: after add WPF Toolkit DLL

After add rrr DLL i am looking at this tutorial. Do i need to add some reference in my XAML in order to find chartingToolkit:Chart ?
mot rer
  • 153
  • 2
  • 9
-1
votes
3 answers

How to get foreground and background colors of textbox for further usage in Color Picker?

Foreground and Background properties are of Brush type. How to get Color for further usage in Color Picker? I pass Foreground and Background to c-tor of a properties window like this: private void Menu_Properties_OnClick(object sender,…
Dragon
  • 2,431
  • 11
  • 42
  • 68
-1
votes
1 answer

How to import .csv data in wpftoolkit Datagrid

I want to show the data in the datagrid as follows : FILE_NAME | FILE_EXTENSION | FILE_PATH __________| _______________|___________ ____AFile__| _____.dll________|_C:\ProgramFiles\Windows\FileA.dll ____BFile__|…
-1
votes
1 answer

How to give link to nodes in Treeview?

I want to develop a WPF application like below image,..In that application i need to connect two child nodes of treeview( child nodes connected through blue color line). How can i do it?
Praveen Kumar
  • 1,576
  • 8
  • 31
  • 47
-1
votes
2 answers

How to create pie chart using wpftoolkit with shades of only one colour

I am new to wpf, I am using wpf toolkit to create pie chart. I have created pie chart using wpf toolkit but my problem is that I have to create Pie chart only with a particular color shade. Say for example green, then my pie chart should use shades…
-1
votes
1 answer

StringUpDown in WPF?

I have a question regarding the following question about NumericUpDown: Good NumericUpDown equivalent in WPF? How I can do this for 12 months of a year? I am planning to use a vertical ScrollBar with a textbox. I want to link the vertical ScrollBar…
getc he
  • 107
  • 4
  • 13
-1
votes
1 answer

Sorting Columns AlphaNumerically in LISTVIEW in WPF

We have WPF application, In which we are ListView in One form, We want to order item alphanumerically. When we sort the columns it needs to sort alpha numerical EG AW1 AW2 AW3 At the moment it is sorting AW1 AW100 AW2 AW200 So what need to be…
Constant Learner
  • 525
  • 4
  • 13
  • 30
-1
votes
1 answer

Loading Buttons on window loaded event depending on Number of User

We have WPF application, We want functionality like below. I want one form, which will contain Users name & one Button in front of each User. Means if Database have 10 Users, it will bring this 10 user when window load , & in front of each user…
Constant Learner
  • 525
  • 4
  • 13
  • 30
-1
votes
2 answers

Suitable environment for developing a Windows application connected to a MySQL database?

Herro! I'm doing some pro bono developing for our local bookshop. I am to build an application to handle their book circle The application would have one admin view where new books, members, memberships etc. can be added/edited/deleted and one super…
happytrooper
  • 57
  • 1
  • 4
-1
votes
2 answers

Override protected virtual without inheritance

I have a bunch of DataGrids in my app. I need to override some protected virtual method for all of them. Is there something better than using derived from DataGrid class with not so familiar name? I would like solution like attached property to be…
user10101
  • 1,704
  • 2
  • 20
  • 49
-2
votes
1 answer

wpf toolkit datagrid column sorting

Hi I have a column called Temperature in my datagrid which displays the temperature values. I want to sort this column on click, so I set the CanUserSort and SortMemberPath to the respective values in viewmodel. But the sorting is not taking into…
-2
votes
3 answers

if condition with && and || in style trigger in WPF

if((a&&(b||c||d)) || (e&&(f||g||h))) then set button Isenabled property true I want to implement this feature for a button in using style trigger in WPF. Thanks in advance.
1 2 3
68
69