Tagged Questions
The selecteditemchanged tag has no wiki summary.
2
votes
1answer
362 views
WPF distinguish between coding-SelectionChanged and the mouse-SelectionChanged
I have a machiavellian question (for me).
In my WPF application I have a ListBox that has in the ItemTemplate a Combobox. When the user select a ComboBoxItem, I have to do some complex operations on ...
1
vote
2answers
30 views
SelectedItemChanged Event bind to an ObservableCollection<Tuple<string, object>>
Here is the ObservableCOllection that it the "ItemSource" of my TreeView :
ObservableCollection<Tuple<string, object>>
The thing is that I am now writing the SelectedItemChanged Event ...
1
vote
1answer
223 views
WPF TreeView Cancel TreeViewItem Selection
I've been looking for a solution to this problem but I still can't find an adequate solution yet. Please help. Basically, I have a treeview that's bound to a list of objects. When the user clicks ...
1
vote
1answer
1k views
Preventing WPF TreeView's SelectedItemChanged event from bubbling
I have a WPF TreeView which triggers a SelectedItemChanged event. Whenever I select an item in the TreeView, the SelectedItemChanged event is triggered for the selected item and all of the selected ...
0
votes
1answer
87 views
Retrieve mysql database value into JComboBox
I use the following code to retrieve data from my database to a JComboBox. It was working properly. My problem is when I execute this code, if I click any items in jCombobox I need the StudId for that ...
0
votes
1answer
312 views
How to get ALL DataGrid's selected Item. (MOST up to date)
I am currently trying to get a collection of selected datagrid rows selected by the user (multi row selection on).
Each row is binded to a visual object which i want to show as selected"
So for the ...
0
votes
3answers
214 views
c#, listbox, stackOverflow exception
I inherited KryptonToolkit ListBox control to get SelectedItemChanging event.
public class CPListBox : KryptonListBox
{
public event CancelEventHandler SelectedIndexChanging;
protected virtual ...
0
votes
2answers
129 views
Combobox and Gridview
If we select the dropdown list Item then I want to display the Item Particulars in the Gridview Please Help me