The tag has no wiki summary.

learn more… | top users | synonyms

0
votes
1answer
38 views

C# WPF DataGrid (ItemsSource = Database Table) - additional column: How to keep changes when (re-)sorting the DataGrid?

got a tricky question here: I have a DataGrid that's being filled (DataGrid.ItemsSource) by an Access Table. What's best practice to show additional columns for the user and keep changes in this ...
1
vote
2answers
44 views

How to setup a grid as template for an Items control?

I'm trying to create an ItemsControl that uses a grid as its ItemsPanel in such a way that it has two columns, where the first columns width is the width of the widest item in that column, and has as ...
1
vote
1answer
51 views

Databinding menu items fails at run-time

I have a MenuItem where the ItemsSource property is databound to an ObservableCollection like so: <MenuItem x:Name="RecentItems" Header="Recent" ItemsSource="{Binding Path=RecentItems}" ...
0
votes
0answers
52 views

Keeping Focus/SelectedItem after DataGrid ItemsSource change

ive been working on this for a few days, but cant seem to come up with a solution i have code on a timer that refreshes the DataGrid every few seconds i tried many refresh options, but in the end ...
1
vote
2answers
160 views

WPF DataGrid ItemsSource Issue

Please let it be known that I am relatively new to WPF. I am creating a new ObservableCollection with the type of my simple data class, and assigning that to the ItemsSource property of my DataGrid. ...
0
votes
1answer
43 views

How to format data for display using an ItemsSource?

I'm pretty new to WPF, so pardon my ignorance. I currently have a List of objects that I am using as an ItemsSource for a DataGrid. One of the fields of the objects is a float data type, and of ...
0
votes
2answers
95 views

How to Bind ObservableCollection Class to DataGrin in WPF

All, I am creating a data set which is 'bound' to a DataGrid at run-time. I pull in some data that is used to build a class which is inheriting from ObservableCollection<T>. The class in ...
0
votes
1answer
150 views

WPF TabControl, switching to another TabItem does not work, sticks to first TabItem

I have a control that contains following XAML code. It works fine excepted that I caInnot switch to another TabItem. I read that TabControl virtualizes the TabItem, I suspect the strange behaviour, ...
0
votes
0answers
39 views

datagrid columns more than one sources for bindind

Hello I have a datagrid which has 10 columns. The first take their values from the itemsource property of the datagrid. But the last two I want them to take their values from an other source. To be ...
0
votes
2answers
49 views

adding elements to combobox from a list

My problem: I have a listbox with owners of dogs, and i have a listbox with dogs. I want to modify the dogs listbox itemtemplate as the following: ...
0
votes
0answers
50 views

how to load a flowdocument used in a fixeddocument

i have a xaml template for a report, this template utilizes the ItemsContent from http://msdn.microsoft.com/en-us/magazine/dd569761.aspx as long as i load the xaml as a flowdocument and show it in a ...
0
votes
2answers
37 views

Disabling a TreeView item bound to an ItemsSource defined in xaml

I have a TreeView that I am binding to an ItemsSource that creates a CheckBox for each item. Here is the xaml: <TreeView x:Name="ReasonTreeView" Height="Auto" Background="Transparent" ...
0
votes
1answer
163 views

Remove item click event handler for single items in GridView

In my Windows Store app I use a GridView with an ItemClick event handler: <GridView Grid.Column="0" Grid.Row="1" SelectionMode="None" IsItemClickEnabled="True" ItemClick="ClickOnItem"> ...
2
votes
0answers
159 views

LongListSelector cannot change ItemsSource

I can't seem to be able to change the ItemsSource in LongListSelector. After doing some research, it appears that LongListSelector ignores any changes in ItemsSource. Am I correct?g If yes, is there a ...
0
votes
1answer
210 views

WPF own UserControl with ItemsSource Property

I want to create a own Usercontrol with an ItemsSource Property. I have created a UserControl "myContainer" and i have created a UserControl "myItem". Now I want to show the myItem Controls in the ...
0
votes
1answer
55 views

How can I change the value of the selectedIndex in a RadListPicker

In my Windows Phone app, I'm overriding the OnNavigatedTo method to populate a RadListPicker with some information. I have two arrays: one is a pre-filled DateTime array of size n, the second is a ...
0
votes
0answers
42 views

Missing a binding somewhere

Working on an mvvm demo project (not homework) Class Friends which inherits ObservableCollection Class Friends ToString is FirstName + " " + LastName, etc ViewModel with a Friends and SelectedFriend ...
0
votes
1answer
233 views

WPF ListView with ItemsSource: how to know when model adds item

Question: What is "proper" way of letting the user control's "view model" (.xaml.cs file) know that a ListViewItem has been added to a ListView? Note that this post is addresses a different problem. ...
1
vote
1answer
151 views

In WinRT, A Collection that implements INotifyCollectionChanged not Updating ItemsControl

I am writing my own collection class that also implements INotifyCollectionChanged. I am using it in a windows 8 store application (winRT). I wrote a unit test that proves that modifying the content ...
1
vote
1answer
90 views

Unselect all items when the SelectedItem is bound to something that doesn't exist in the list

I have two lists with different ItemsSource but with SelectedItem bound to the same property - "Name". First i'm choosing the item "c" in the right list so the item "c" in the left list is selected ...
0
votes
1answer
377 views

How to use RelativeSource Binding to create DataGrid binding to Model and ViewModel?

I have a DataGrid which has a DataGridTemplateColumn that uses the ItemsSource binding of the DataGrid, but in the ComboBox of the DataGridTemplateColumn, I want to be able to bind to the ViewModel ...
0
votes
1answer
110 views

should we set ItemsSource again or update view model

I have a view model (an ObservableCollection list) set as ItemsSource for a ListBox. When I refresh this view model (get new data from network), should I set ItemsSource again, or just let it notify ...
0
votes
0answers
50 views

WPF .Net4.0 datagrid

I am new to WPf. I have added a WPF 4.0 datagrid. With two columns, column one is readonly and is derived from a listbox items. column two is editable. I populate the datasource as follows /// ...
1
vote
2answers
238 views

Submit ItemsSource of ComboBox to ValidationRule

I would like to hand in my validation class the ItemsSource-object, to check whether the users input (value in handler class) can be found in the list (of ItemsSource) How I can submit ItemsSource of ...
0
votes
1answer
175 views

WPF: Avoid CustomCombobox to fire SelectedItem Binding when changing ItemsSource to CompositeCollection

I have a Custom Control derived from a ComboBox where I use a CompositeCollection to "merge" the original ItemsSource with additional Objects. The problem is, that CompositeCollection comp = new ...
0
votes
1answer
458 views

In WPF I have a TreeView whose ItemsSource is binded to a static resource. How can I change this so that the tree updates when the items change?

I have a TreeView whose ItemsSource is binded to StaticResource, which is a class. This has worked fine for me, but now I have a function that updates the lowest level of the TreeView with possible ...
0
votes
1answer
293 views

How to bind WPF ContextMenu ItemsSource?

I'm trying to bind Button's context menu this way: <Button.ContextMenu> <ContextMenu ItemsSource="{Binding RelativeSource={RelativeSource AncestorType=UserControl}, Path=Values}"/> ...
0
votes
1answer
179 views

Custom Panel InternalChildren order differs from bound ItemsSource

I'm writing a custom ItemsControl and Panel that arranges items vertically in the order in which they were added to the ItemsSource bound to the ItemsControl. Note that this is just a prototype of ...
1
vote
0answers
122 views

Application throwing exception when trying to re-load listview

Does anybody have any idea why I would be hitting an error when I reach: listViewEmployees.ItemsSource = Nothing in my code below? As soon as I hit that line my program throws an exception. What I ...
0
votes
0answers
166 views

Linking Data With ComboBox in WPF with Linq To Entities

i have a combobox IN WPF linked with Category table in database with LINQ To Entity THE XAML CODE IS HERE <ComboBox Grid.Row="3" HorizontalAlignment="Left" Margin="81,0,0,0" Name="cmb_Cat" ...
-1
votes
2answers
106 views

Link ListView Items to Individually Different Lists

I've defined a ListView where each item is displayed with a read-only (i.e. selection-only, no TextBox) ComboBox (as per the ItemTemplate). There is a given list of possible items that can be chosen ...
3
votes
2answers
814 views

WPF TreeView hierarchical binding.

just starting with wpf. I need to bind the object (Hierarchical) Folder public class Folder { public Folder() { this.Name = string.Empty; this.Modules = new ...
0
votes
2answers
360 views

Setting ListBox ItemsSource to an object from StaticResource as shown in MSDN

I was exploring DataTemplate and found Styling and Templating on MSDN. It says - "In this sample application, there is a ListBox control that is bound to a list of photos: <ListBox ...
2
votes
1answer
271 views

Setting ItemsSource of ListBox to a property of it's containing class

I have the following xaml - <Window x:Class="DataTemplateTest.MainWindow" xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation" ...
0
votes
0answers
85 views

Explicit ItemsSource binding

I have object with ObservableCollection property. I'm binding this property to the ListView ItemsSource like this: <ListView ItemsSource="{Binding Groups, Mode=TwoWay, ...
0
votes
1answer
366 views

Bind Column Visibility Property to Alternative Source, other than ItemsSource from Data Context

I have a datagrid whose ItemsSource binds to a CollectionViewSource. In each column I specify the Path property of the binding to get the specific information to display. What I'd like to do is ...
0
votes
3answers
154 views

Setting ItemsSource before or after adding items changes object?

I have a bit of a weird situation, I've implemented a ObservableConcurrentDictionary (based on the ConcurrentDictionary from .NET), which I used to implement ObservableConcurrentCollection (which just ...
1
vote
1answer
315 views

ItemsControl behavior when ItemsSource is IList

I'm trying to implement a virtualizing collection for hierarchical controls similar to the one for regular controls presented in this article. The solution presented in the article relies heavily on ...
0
votes
2answers
74 views

How to bind a specific property in a DataTemplate independent of ItemsControl in ItemsControl

I have following DataTemplate <DataTemplate x:Key="iconButtonsTemplate"> <StackPanel Orientation="Horizontal" Margin="120,50,0,0" HorizontalAlignment="Left" ...
0
votes
1answer
468 views

ComboBox ItemsSource has a different datacontext from SelectedItem

I have ComboBox where I get my ItemsSource from my "Settings" object with the UserTypes ObservableCollection inside, and I need to bind its SelectedItem to my "Employee" object's type property. There ...
2
votes
2answers
295 views

NullReferenceException when setting ItemSource ComboBox property [duplicate]

Possible Duplicate: What is a NullReferenceException in .NET? I have two ComboBoxes, one of companies and other of regions (meaning each company has a set o regions) and I want to change ...
1
vote
2answers
1k views

WPF Listbox & MVVM binding

I am following MVVM in C# and am attempting to display a view in a listbox. I am setting the listbox itemsource (in code, not in binding and using the viewmodels collection) and then set the ...
0
votes
2answers
366 views

grouping in itemscontrol using ItemsSource from ViewModel

I've defined ItemsControl like that: <ItemsControl Style="{StaticResource SellingDashboardToDosList}" Grid.Row="2" BorderThickness="1" Background="#C7E8F8" HorizontalAlignment="Stretch" ...
0
votes
1answer
253 views

Creating a databound control through c# code?

I know that in XAML it's possible to create data templates with code so you can style & bind controls to your liking: <ListBox x:Name="statusBox"> <ListBox.ItemsPanel> ...
0
votes
1answer
150 views

Updating ListBox causes delay

I want to display a ListBox with around 10 items in it. Every time I update it by adding an item to a List it causes a little but noticeable delay and the UI freezes for a little while. I also tried ...
0
votes
0answers
217 views

Delete item from Datagrid ItemsSource

I have a class Sample, every basic, has a property call name. and a Samples:ObservableCollection"Sample"; Samples class is bind to datagrid. Use "" to replace < >.... <> doesnt work here. Why ...
1
vote
2answers
292 views

Binding ItemSource of an element in a UserControl to an item in the parents ViewModel

Sorry, I'm thrashing around a bit learning MVVM, WPF, and XAML simultaneously. I have a problem that I created and I am completely confused with how this should be handled in MVVM. What I have is a ...
1
vote
1answer
378 views

Combobox ItemsSource Binding (MVVM) - how can I reset the ItemsList

I Have a combobox with ItemsSource bound to an ObservableCollection. A RadioButton allows the user to select a mode. for each mode, a dedicated differnt list should be available in the combobox. My ...
0
votes
1answer
2k views

WPF DataGrid ItemsSource doesn't get updated on changing source

I have already read some posts, but no one helped me with my problem. So, i have a View with a Viewmodel and inside the View a DataGrid boudn to a ObservableCollection inside the viewmodel. The ...
2
votes
0answers
357 views

WPF ListBox with Grouped CollectionViewSource will not de-select first SelectedItem [closed]

Having an issue with a LisBox with a grouped CollectionViewSource ItemsSource in .NET 4.0. Pretty sure it's a bug, but can't find a good workaround. This is the entire code to repro the problem. ...

1 2 3 4