0
votes
1answer
26 views
WPF - Bound treeview not updating root items
I'm using a WPF TreeView control, which I've bound to a simple tree structure based on ObservableCollections. Here's the XAML:
<TreeView Name="tree" Grid.Row="0">
…
0
votes
3answers
626 views
How to manually add data to a DataGrid in Silverlight
I have found that datagrid columns can be dynamically created and bound in Silverlight. However I can't find a way to bind data to those columns.
If I try to bind any type of object with …
0
votes
3answers
95 views
Silverlight 3: Using list of UserControls as ItemsSource for TreeView
I want to populate a TreeView with UserControls, but I only want the Name property to show up, not the entire UserControl. The following code gives me weird crashes as soon as I add something to …
0
votes
2answers
38 views
Set ItemsSource of a ComboBox to an Array of Integers?
Set ItemsSource of a ComboBox to an Array of Integers?
0
votes
0answers
34 views
IsSynchronizedWithCurrentItem attribute and current item updates
Hello
I have a view model to manage a dialog type of view that allows filtering of a listing (if necessary) and selection of an item. The code works fine whether I set IsSynchronizedWithCurrentItem …
0
votes
2answers
565 views
WPF DataGrid: DataGridComboxBox ItemsSource Binding to a Collection of Collections
Situation:
I've created a DataGrid in XAML and the ItemsSource is binded to an ObservableCollection of a certain class that contains properties. Then in C#, I create a DataGridTextColumn and a …
1
vote
1answer
49 views
I have some performance related questions about Silverlight Enterprise app development.
I have some performance related questions about SL Enterprise app development.
-We have 10.000 rows binding to an ItemsSource control. (A total of 100.000+ UIElements when databound)
Q1.How to do …
1
vote
1answer
171 views
Strange XAML MenuItem DataBound ItemsSource Refresh Issue after empty ItemsSource
I have a XAML MenuItem DataBound ItemsSource that is working fine however there is a small issue. When I view the MenuItem and there is no databound items the ParentMenu will be disabled and it …
0
votes
1answer
229 views
WPF DataContext vs ItemsSource Performance
Hi!
Suppose we have an ItemsControl, which is bounded to a source.
Is there any performance difference between
ItemsControl.DataContext = resultSet;
and
ItemsControl.ItemsSource = resultSet;
…
0
votes
1answer
528 views
C# WPF datagrid: ItemsSource
I want to know how you can modify properties of columns of a WPF toolkit datagrid once the ItemsSource has been set (it is set in XAML)? For example I want to make a specific column have the property …
0
votes
3answers
365 views
Binding ItemsSource to a “proxy” collection. How to get DataContext?
We've got a Silverlight application with several listboxes and comboboxes that display data sorted incorrectly, which I need to fix. Most of their ItemSource properties are set through XAML. Their …
1
vote
3answers
227 views
What should Binding Path property be set to?
Hi All,
Assuming I have this struct definition in C#:
public struct TimeSlotInfo
{
public int TimeSlotID;
public int StartMin;
public int CalcGridColumn;
public string BackgroundCol;
…
0
votes
0answers
1k views
WPF - Multibinding from Two Sources inside the ListBox DataTemplate
Hello everyone,
I tried to look around to see if I am missing something basic, but I can't seem to understand what I am doing wrong.
I have a listbox where I would like to bind the itemssource to a …
1
vote
1answer
442 views
ItemsSource + Converter + Treeview wont update
This one is fairly complex, hopefully I can make this clear enough for somebody to help me out. I have an object lets call it a Manager, the Manager has a collection of people that he manages, the …
1
vote
3answers
342 views
WPF Databinding in XAML
Hello
I have little problem with databinding in my current project.
I have an ObservableCollection I want to bind to an ListBox.
public ObservableCollection<GeoDataContainer> geoList = new …
