Tagged Questions
The selecteditem tag has no wiki summary.
29
votes
9answers
20k views
SelectedItem in a WPF Treeview
How can I retrieve the item that is selected in a WPF-treeview? I want to do this in XAML, because I want to bind it.
You might think that it is SelectedItem but apparently that does not exist is ...
17
votes
2answers
6k views
WPF TreeView: How to style selected items with rounded corners like in Explorer
The selected item in a WPF TreeView has a dark blue background with "sharp" corners. That looks a bit dated today:
I would like to change the background to look like in Explorer of Windows 7 ...
13
votes
11answers
5k views
Selecting a Textbox Item in a Listbox does not change the selected item of the listbox
I Have a wpf Listbox that display's a list of textboxes. When I click on the Textbox the Listbox selection does not change. I have to click next to the TextBox to select the listbox item. Is there ...
8
votes
3answers
3k views
Difference between SelectedItem, SelectedValue and SelectedValuePath
What is the difference betweeen the following:
SelectedItem
SelectedValue
SelectedValuePath
All these dependency properties are defined in Selector class. I often confuse SelectedItem with ...
8
votes
2answers
13k views
How to change selected tab on Button click in WPF TabControl with Buttons in Header
I have a WPF TabControl that has a couple of buttons in the TabItem header.
I want the selected tab to change when a headered button is clicked. Here
is a code snippet:
<Page ...
7
votes
5answers
19k views
Binding ComboBox.SelectedItem in Silverlight (more)
Related to my previous question: http://stackoverflow.com/questions/855519/binding-combobox-selecteditem-in-silverlight
I have a ComboBox bound like so:
<ComboBox x:Name="PART_CommentaryList"
...
7
votes
4answers
4k views
(CSS?) Eliminating browser's 'selected' lines around a hyperlinked image?
The attached screenshot is from OS X/Firefox 3. Note that the center tab (an image) has a dotted line around it, apparently because it was the most-recently selected tab. Is there a way I can ...
6
votes
2answers
3k views
MVVM,WPF: How to set a item as selected in a combobox
It seems nobody has yet found a way to set the comboboxitem as selected with a SelectedItem="Binding Property".
Is the solution to use a IsSelected Property in the ViewModel object within the ...
6
votes
4answers
13k views
WPF binding to Listbox selectedItem
Can anyone help with the following - been playing about with this but can't for the life of me get it to work.
I've got a view model which contains the following properties;
public ...
6
votes
2answers
1k views
Silverlight DataGrid Updating SelectedItem from code
When I update a datagrid SelectedItem from code (via a bound object in a ViewModel), how to I get the visual grid to highlight the newly selected item?
Thanks,
Mark
UPDATE: This is still an issue ...
6
votes
2answers
6k views
What is the easiest way to handle SelectedItem event with MVVM?
In the code below, when user selects Customer in the combobox, the customer's name is displayed in a textbox. I fill the Combox box with an ObservableCollection property on my ViewModel but how do I ...
5
votes
3answers
2k views
How to cast a System.Windows.Controls.SelectedItemCollection?
I have a method:
private void DeletePuzzle(object param)
{
}
param is a System.Windows.Controls.SelectedItemCollection, that I got from a WPF ListView's SelectedItems property.
Somehow, I can't ...
4
votes
2answers
2k views
ComboBox ItemsSource changed => SelectedItem is ruined
Ok, this has been bugging me for a while now. And I wonder how others handle the following case:
<ComboBox ItemsSource="{Binding MyItems}" SelectedItem="{Binding SelectedItem}"/>
The ...
4
votes
3answers
3k views
WPF ComboBox SelectedItem - change to previous value
I have a ComboBox that has the SelectedItem bound to the ViewModel.
<ComboBox SelectedItem="{Binding SelItem, Mode=TwoWay}" ItemsSource="{Binding MyItems}">
When the user selects a new Item ...
4
votes
4answers
19k views
WPF Datagrid set selected row
How do I use the Datagrid.SelectedItem to select a row programmatically?
Do I first have to create a IEnumerable of DataGridRow objects and pass the matching row to this SelectedItem property or how ...
4
votes
2answers
1k views
WPF Listview/Gridview setting selected item when combobox is clicked
I'm having issues using a GridView as a ListView's View, what I want to do is fire an event when a user makes a selection from a combobox within the Gridview and pass the selected item within the ...
4
votes
1answer
19k views
Binding ComboBox.SelectedItem in Silverlight
This one is driving me crazy. Here's the XAML:
<UserControl x:Class="SilverlightApplication1.Page"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
...
4
votes
2answers
17k views
WPF Xaml Custom Styling Selected Item Style in a ListBox
I have a ListBox that scrolls images horizontally.
I have the following XAML I used blend to create it. It originally had a x:Key on the Style TaregetType line, MSDN said to remove it, as I was ...
3
votes
3answers
5k views
Get selected row item in DataGrid WPF
I have a DataGrid, bound to Database table, I need to get content of selected row in DataGrid, for example, I want to show in MessageBox content of selected row.
Example of DataGrid:
ID Name Domain
...
3
votes
2answers
4k views
Mvvm-Light Silverlight, using EventToCommand with a Combobox
I've hooked up a ComboBox's SelectedItemChangeEvent to a ICommand in my view model.
Everything seems to be working fine however I do not know how to get the SelectedItem of the ComboxBox.
I think I ...
3
votes
1answer
2k views
WPF SelectedItem not working in MVVM
I'm trying to display the data from two sql ce 3.5 sp1 database tables linked with foreign key - Customers and Orders. When the customer is selected in a datadrig, I want the other grid to be ...
3
votes
3answers
1k views
WPF ListView SelectedItem is null
I have a Listview that has a checkbox as one of the columns. If I click anywhere but the actual checkbox the SelectedItem of the ListView is set to the current selected row, as expected. If, on the ...
3
votes
7answers
2k views
WPF ComboBox SelectedItem
Ok been working with WPF for a while but I need some help.
I have a ComboBox like below:
<TabControl>
<TabItem Header="1">
<ComboBox ItemsSource="{Binding MyList}" ...
3
votes
2answers
13k views
WPF ListView Programmatically Select Item
Oh, man. I'm feeling the WPF pain this week. So for my next trick, I'm now unable to figure out how to select an item programmatically in a ListView.
I'm attempting to use the listview's ...
3
votes
2answers
5k views
ComboBox Style problems with DisplayMemberPath
I have a ComboBox and I have set the combo.ItemsSource property to a List object. The Book class contains two properties: "Abbreviation" and "Name".
I have set the ComboBox's DisplayMemberPath to ...
3
votes
3answers
586 views
Shell extension for selected file
Is there a way to know which file is being selected in windows explorer? I've been looking at the tutorial posted here Idiots guide to ... but the actions described are:
hover
context
menu ...
2
votes
1answer
165 views
Winforms ComboBox SelectedItem changing does not affect the BindingSource
I am making C# / WinForms application. The problem I couldn't solve (yet) is that when I change the SelectedItem of ComboBox programatically, it is changed until the ComboBox loses the focus, after ...
2
votes
2answers
40 views
ASP.net form not passing ddl values
I have a form with 2 dropdownlists and a submit button.
I want to pass the values of the lists in a URL when the list is submitted but for some reason the initial value of the ddl is getting passed.
...
2
votes
4answers
123 views
deleting from a list in c#
I have a wpf c# application, that loads tasks to a treeView from a text file, the data about the tasks are loading into a list, Im trying to delete data in position I in the list, but i can not figure ...
2
votes
1answer
87 views
treeView_selectedItemChanged event handler
I have a wpf c# application that gets the name of household chores from a text file and then loads then into a several lists such as a list of nameOfChore, a list of ChorePriority, and then load the ...
2
votes
3answers
281 views
C# MVVM Combobox
Greetings fellow humanoids.
I will cut straight to the case.
I'm currently teaching myself MVVM, trough video and google, making a sample project for myself.
It's a simple application connected to a ...
2
votes
2answers
412 views
Change the Selected Color Listbox
I want to change the Selected Background and have it display a gradient with round corners. I've searched Google and found that some people do change the selected color by overriding the default ...
2
votes
3answers
655 views
C# winform opens with right-click context menu, but how do I get the selected item to show up?
I have a C# WinForm App that I created to store files in a seperate secure location on the hard drive. I am trying to add functionality to the program by adding a right-click context menu so when a ...
2
votes
1answer
332 views
Improving the default selected item style for WPF tree views
Just about every tree view and list item in Windows has an attractive light-blue with border selected item effect:
But when I create a simple tree view using WPF the default effect is far less ...
2
votes
1answer
467 views
WPF ComboBox Binding to Enumeration
I have a Combo Box that has ItemsSource Bound to an Enumeration using ObjectDataProvider, and its SelectedItem Property is bound to a property of a businessobject.
For some reason it's binding ...
2
votes
1answer
2k views
wp7: navigating dynamic pivotitems in a pivot
I have a pivot page, with one fixed pivotitem, and depending on data, a dynamic number of additional pivotitems. The fixed pivotitem keeps a hyperlink list of the new pivotitems created, and the idea ...
2
votes
2answers
291 views
Why in C# , in the control combobox , i can't change the property SelectedItem?
I have a simple class called Tuple. which looks like this :
class tuple
{
string name;
string code
}
i inserted few of these items into a combobox, now when i want to select through the ...
2
votes
0answers
729 views
WPF: DataGridComboBoxColumn loses its content when selection changes
When I click a cell in my DataGridComboBoxColumn the ComboBox gets visible and I can select items. When I have selected an item its visible at the top thats fine. But when the cell aka ComboBox loses ...
2
votes
1answer
1k views
android gallery item selector
I want to use following selector drawable for android gallery image will it work ?
<selector xmlns:android="http://schemas.android.com/apk/res/android">
<item state_selected="true" ...
2
votes
2answers
1k views
wpf datagrid current item binding
I want to bind a content of a Label to the SelectedItem of a DataGrid.
I thought the 'current item' binding expression would work, but it does not.
My xaml code and code-behind c# is like below:
...
2
votes
1answer
2k views
Binding a listbox SelectedItem to an Observable Collection?
I have a Listbox in WPF with the SelectionMode set to Multiple, and can multiselect the items in the Listbox. However, the SelectedItem is not updating the Observable Collection it is bound to.
Is ...
2
votes
5answers
600 views
Casting SelectedItem of WPF Combobox to Color causes exception
I have a combobox databound to the available system colors. When the user selects a color the following code is fired:
private void cboFontColour_SelectionChanged(object sender, ...
2
votes
1answer
2k views
Animate selected item of wpf listbox
I'm trying to set a global style for all the listboxes in my application. Below is the xaml code that i've used. Here i've tried to trigger out an animation but it doesn't work. I just want an ...
2
votes
4answers
2k views
Programmatically set ComboBox SelectedItem in WPF (3.5sp1)
I have been confused while setting SelectedItem programmaticaly in wpf applications with Net Framework 3.5 sp1 installed. I have carefully read about hundred posts \topics but still confused((
My ...
2
votes
3answers
1k views
ListBox TwoWay bind to SelectedItem
I've seen this question asked numerous times and have gone over my code over and over. But when I assign to my SelectedItem-bound property with an object, it does not update the display's selected ...
2
votes
3answers
1k views
Getting previously selected item in select box with jQuery
I have a single item HTML select box on which I'd like to find out the what item was selected just prior to changing selection to the new item.
By the time the change event is fired, it's already too ...
2
votes
5answers
753 views
How to ensure that no item is selected in databound ListBox?
OK, this must be a duplicate question, but I cannot find the answer:
I have a listbox that is databound to a Collection. By default Items[0] is selected. How can I prevent this in order to ensure that ...
2
votes
1answer
763 views
TreeView Sync to SelectedItem in View Model
I have a ViewModel on top of a WPF TreeView control. I want the ViewModel to be able to set and read the SelectedItem from the TreeView. However, the SelectedItem property of the TreeView is not ...
2
votes
1answer
514 views
Making WPF ListBoxItems selectable
I have a ListBox with a rather simple ItemTemplate defined - containing a TextBlock and a Button. This displays like expected, but there is a problem though. When I click the content of the ...
2
votes
6answers
2k views
Problem: ListBox always auto selects first item
ListBox's behavior is that the first item is selected automatically, how can I avoid that??
Note: I want to do this with pure xaml, if you have any code-behind ideas then please don't bother ...