The tag has no wiki summary.

learn more… | top users | synonyms

4
votes
2answers
260 views

preventing row change in datagrid

I have researched this and am stumped: I have a WPF DataGrid, and using an MVVM model. I want to, under certain circumstances, prevent the ability to change a row in the DataGrid. I have researched ...
3
votes
1answer
250 views

RichTextBox Save “Selection Direction”

I have a WinForms program where, whenever you change your selection, the RichTextBox needs to change the colour of certain other text. In order to do this, it has to select that text, and therefore I ...
2
votes
1answer
98 views

ADF Faces escape button doesn't trigger SelectionEvent for a SelectionListener af:table

Why doesn't escape button notifies me that the selection changed ? (to unselected) I have some validation on SelectionListener and pressing escape is jumping over my validation. This is definitely not ...
2
votes
2answers
309 views

AutoCompleteBox: do not validate with Up/Down keys

My AutoCompleteBox calls a WCF service when the selection is changed, usually with the mouse. However if the user uses the arrow keys to navigate through the selection, the event fires up for each ...
2
votes
1answer
297 views

Disabling drag-to-scroll in ListView in WPF

I'm working in WPF to create a ListView component. The items in the list are based on another user control that reacts to MouseLeftDown events. The List also reacts to SelectionChanged events. Right ...
2
votes
3answers
900 views

WPF ListBox selection does not work

I have a ListBox for a few items, and I need to be able to click them. Problem is, the SelectionChanged event doesn't get fired when I click on the item's text, only if I click on the blank part. I'm ...
2
votes
1answer
1k views

WPF TabControl On SelectionChanged, set focus to a text field

I have a tab control, and a few tab items. I am successfully listening to the SelectionChanged event, and checking if the tab I'm interested in is the currently selected one. I'm using this code ...
2
votes
0answers
329 views

Silverlight 3 DataGrid SelectionChanged event fired when switching applications

This is annoying...When running my SL3 app with a datagrid after having selected a row in the grid, if I alt-tab to a different application and then alt-tab back - the SelectionChanged event fires! ...
2
votes
3answers
450 views

WPF - How To Tell What Raised The ComboBox_SelectionChanged Event

Is there any way to tell how the ComboBox_SelectionChanged event was raised in WPF. That is, was the event raised as the result of a user interaction, or as the result of a change in the property ...
1
vote
2answers
63 views
+50

Event handling with LongListSelector and list item with checkbox

I've a LongListSelector with the following item template: <DataTemplate x:Key="stopItemTemplate"> <Grid Margin="{StaticResource PhoneTouchTargetOverhang}"> ...
1
vote
2answers
56 views

JList: previous selected item

I have a JList and register a selection handler (ListSelectionListener). Now I need to now the previous selected item/index. Up to now, I save the last selected item on my own. Is there a better way ...
1
vote
1answer
33 views

Simplest Method to monitor changes between combo box values

I'm looking for an elegant way to track changes between values for a combo box. What I'm looking to do is fire a custom event when the SelectionChanged event happens, but only for a specific value ...
1
vote
1answer
24 views

How do I un-link the selection of two separate comboboxes which bind to the same object?

I have two seperate WPF Comboboxes both of them bind to the same object to populate their values. However, when I change the selection in one combobox, the selection in the other combobox is changed ...
1
vote
2answers
392 views

wp7 ListBox SelectionChanged Text Color

The default behaviour for a ListBox used in a WP7 application is for the selected item to be highlighted in the PhoneAccentBrush. I am finding that with a ListBox that when I handle the ...
1
vote
3answers
187 views

C# Multiple SelectionChanged Events

I want to have 2 selectionchanged events, like this protected override void xpathList_SelectionChanged(object sender, SelectionChangedEventArgs e) { //my code } private void ...
1
vote
1answer
724 views

Silverlight MVVM, stop SelectionChanged triggering in response to ItemsSource reset

I have two ComboBoxes, A & B, each bound to an Observable Collection. Each has a SelectionChanged trigger is attached which is intended to catch when the user changes a selection. The trigger ...
1
vote
1answer
146 views

Touch issue on ListBox

I have this ListBox in my xaml. FIRST.XAML <ListBox ItemsSource="{Binding Items}" x:Name="newsList" ItemTemplate="{StaticResource NewsListTemplate}" Margin="-2,86,2,0" ...
1
vote
2answers
407 views

Prevent Silverlight datagrid selectionchanged from killing button click?

I have a datagrid in Silverlight that has a template column in it containing a button. Looks basically like this in XAML - <sdk:DataGrid ItemsSource="{Binding Items}" SelectedItem="{Binding ...
1
vote
1answer
1k views

Combobox selectionchanged event triggers without even changing the selection in the ComboBox

Could you help me find the error in this one: The event triggers before even the windows form is loaded. I start to see the message Box and then I click OK,after that it loads the main screen.After ...
1
vote
1answer
479 views

WPF Combobox SelectionChanged record binding

In my xaml, I have a ListBox of Customers on the left. When a customer is selected, the right will display the customer info (name, address, phone, type, etc) to a bind textbox or combobox. On the ...
1
vote
1answer
290 views

WPF - Animation on SelectionChanged

How would I go about changing a TabItem color from it's unselected color to it's selected color with an animation on SelectionChanged, so that both the unselected and selected TabItems change? Edit: ...
1
vote
1answer
385 views

Wpf - NavigationService.GoBack() and Listbox SelectionChanged Event

In ADDPage.xaml page there i s a Back Button with the code NavigationService.GoBack() to go back to the previous page. Problem: In the Listbox SelectionChanged Event of another page (SubPage.xaml)i ...
1
vote
2answers
273 views

MVVM-Light What about events?

I started using MVVM-Light with WPF yesterday and it really makes a difference when it comes to structuring the code. But now i'm trying to figure out how to handle event. Lets say I've got this ...
1
vote
2answers
822 views

WPF ListView SelectionChanged inside style does not work. EventSetter either

<Style x:Key="OrderGroupTemplateStyle" TargetType="{x:Type ContentControl}"> <Style.Triggers> <DataTrigger Binding="{Binding Path=Name.ShowDetailedInfo, ...
1
vote
1answer
817 views

Do WPF ComboBox SelectedIndex and SelectedValue have different behavior on SelectionChanged event?

I got this cbxJobPosition_SelectionChanged firing as expected. The problem is when a external method tries to set cbxJobPosition. cbxJobPosition is databinded with a list of objects of type ...
1
vote
2answers
2k views

listview.selectionchanged, can I make it fire everytime I click an item?

Is there a way to make the selectionchanged event fire every time a selection in the listview is clicked, instead of only when it changes? For example, lets say i have a listview with only one object ...
1
vote
1answer
6k views

How to get a specific cell in a DataGridView on selection changed

With a listbox, I have the following code to extract the item selected: private void inventoryList_SelectedIndexChanged(object sender, EventArgs e) { String s = ...
0
votes
0answers
21 views

MVVM commands for combo boxes

I have a combo box in my xaml with a selection command associated with it: <ComboBox x:Name="box" d:LayoutOverrides="Height" Grid.Column="1" HorizontalAlignment="Left" MinWidth="120" ...
0
votes
3answers
46 views

Windows Phone 7 Selection_Changed automatically

currently I'm developing an app for WP7 but came across a little problem with a Listbox event call Selection_Change. The problem is that when i return to the page that contains the listbox the ...
0
votes
0answers
23 views

.net datagridview selectedchanged event catch previous cell

When I changed the current cell, I want to catch the previous cell. However I dont want to use cellLeave event, because the event triggered all the time. For example when the current control changed, ...
0
votes
4answers
211 views

How can I realize SelectionChanged in MVVM ListBox Silverlight

The ListBox control does not implement a Command property. I have to attach some functionality to the SelectionChanged event. Somebody knows how can I do it? Please help me
0
votes
0answers
60 views

Android Spinner: Re-Select Same Object Within The Spinner

I am writing an Android application in which I would like to be able to detect the selection of an already selected item in a spinner. The standard spinner interface allows detecting only selection ...
0
votes
2answers
162 views

How to cancel a ComboBox SelectionChanged in C#

Is there an easy method to prompt the user to confirm a combo box selection change and not process the change is the user selected no? We have a combo box where changing the selection will cause loss ...
0
votes
1answer
107 views

CollectionViewSource initialization raises listbox's SelectionChanged

May be I missed something, but I've already beat my head with this one. I have defined CollectionViewSource: <CollectionViewSource x:Key="packagesViewSource" d:DesignSource="{d:DesignInstance ...
0
votes
4answers
74 views

Selecting a row in DataGridView

I fill a DataGridView from a datatable. And I use the selectionchanged event in the DataGridView control. When I insert a new item into the database and reload datatable in the grid, it selects the ...
0
votes
2answers
178 views

C# datagridview selectionchanged event error

when i work with selectionchanged event in datagridview. if i click column header it give me that exception: NullReferenceException was unhandled by user code Object reference not set to an instance ...
0
votes
2answers
38 views

ListView deletion only on click

I have a ListView with a specific ItemTemplate, which visually displays the contents of a list of objects. I wanted to allow the user to select such an object by clicking on it, and as a consequence ...
0
votes
2answers
180 views

ListView with RadioButtons fires/raises SelectionChanged ONLY on Right-Click (Need left-click)

I have the following XAML/Control Template for a ListViewItem: <Window.Resources> <ControlTemplate x:Key="ItemTemplate" TargetType="ListViewItem"> <Border ...
0
votes
1answer
277 views

DataGridView Default Row/Cell select issue

DataGridView set to Full Row Select. Need a way to clear the default selected row thats done by the default nature of DataGridView I am also using SelectionChanged event That dgv has 4 columns If i ...
0
votes
3answers
88 views

Only the text in a ListBox item is selectable, the space outside of the text is not selectable

I have a WPF ListBox whose items are TextBlocks. When I click on the text the SelectionChanged handler is called as expected. However, if I click inside the item, but not directly over the text the ...
0
votes
2answers
223 views

Disable event bubbling on selectionchanged event- WPF

I have a listbox inside a listview. on Both of them I have selectionchanged event. When I fire child control event parent control fires automatically. I need to stop this behaviour. Any hints? Thanks! ...
0
votes
1answer
129 views

Why does SelectionChanged bubble from ComboBox to parent TabControl?

After experiencing it myself, I did a quick search and found that SelectionChanged will bubble from a ComboBox to a parent TabControl if left unhandled in: In C# WPF, why is my TabControl's ...
0
votes
2answers
389 views

WPF DataGrid Cancel Selection Change

I am working with WPF DataGrid in the MVVM manner and having trouble reverting the selection change from the ViewModel. Is there any proven way to do this? My latest tried out code is below. Now I do ...
0
votes
0answers
211 views

combobox selectionchange firing multiple times & selected index does not change to zero

I have 2 comboboxes that has selectionchanged event and it is firing multiple times like 7 times and it is kinda of getting performance issues. Why does this happen and how do I Improve my code. Also, ...
0
votes
0answers
132 views

Call ASP calendar ondayrender from dropdown box selectedindexchanged event

I have an Event Calendar in which the data is being pulled from sql and placed into a collection(list). When the calendar renders for the first time it works fine. When the calendar steps forward ...
0
votes
1answer
116 views

how to send select_tag value in form parameter in rails 3

<%= form_tag url_for(new_manage_listing_media_path(3)),:method => 'get' do -%> <%= label_tag ':name', "Choose media:" %> <%= select_tag "id", ...
0
votes
2answers
760 views

show different item on selectionchange on a grid

i have a grid and a form, i need to show different items on the form each time we select a row on that grid i ve been looking on how to do this, and found Ext.getCmp('myform').hide() // or ...
0
votes
0answers
382 views

TextBox.LostFocus event prevents ListBox.SelectionChanged event from firing

I have a stack panel that contains a text box and a list box. <StackPanel Grid.Row="3" Grid.Column="1" VerticalAlignment="Top" Grid.RowSpan="5" Margin="0,5,0,0" ...
0
votes
1answer
564 views

Silverlight ComboBox selection changed or reselected event

On a Silverlight ComboBox, the SelectionChanged event does not fire when you open the dropdown list, then click on the currently selected item. What's the best way to have an event/method trigger ...
0
votes
1answer
309 views

Qt QGraphicsScene how to separate select and unSelect signals?

I am creating an app in qt, and i have come to a problem. I have a qgraphics scene. I create the scene and I have put some actions to take place when the user clicks on a scene item. I can detect ...

1 2