Tagged Questions
0
votes
0answers
24 views
How to edit elements in a collection from another window or Dialog
I have a number of collection bound to the application main window controls shown in a
simplified form below. There are a number of other elements in the view model
(Ommited for Clarity) which all ...
-1
votes
0answers
18 views
WPF GroupDescriptions Issue
In my application I have to show list of compatible printers installed. I have 4 printer installed and it shows like this:
If there are multiple printer with same printer type, then I group them. But ...
1
vote
1answer
93 views
Binding collection to ComboBox in Listview
I have a ListView whose DataTemplate consists of a ComboBox and some TextBoxes.
The ComboBox is bound to a Collection which is mapped to a CollectionViewSource.
The ListView can have any number of ...
0
votes
1answer
45 views
MVVM: using commands when binding to collection of business model object
There has been debate whether we should bind model properties directly to the view. But most of the xamples online bind model properties to view directly e.g. {Binding Model.Property}
I was ceating a ...
0
votes
1answer
80 views
How to get/put these XAML data source values to/from C# code-behind in WPF?
I am learning the WPF.
Taking into account the XAML code for a WPF application:
<Window x:Class="_0SE_BridgingCodeBehind.MainWindow"
...
2
votes
2answers
215 views
WPF Datagrid group and sort
I am implementing grouping in WPF datagrid. I want to sort the grouped items.
For example datagrid is having four columns(empno,name,dept,address). I am doing grouping by dept column.
when I click on ...
0
votes
0answers
21 views
Raising an event from within a ObjectModel.Collection(Of T)
I have a collection defined as follows:
Public Class cData_X_Collection
Inherits ObjectModel.Collection(Of cData_X)
End Class
This class is used in ListView on a WPF form and works correctly.
...
1
vote
1answer
86 views
Threading and collections modification in WPF / C#
I'm currently developing a system in C# / WPF which accesses an SQL database, retrieves some data (around 10000 items) and then should update a collection of data points that is used as data for a WPF ...
0
votes
2answers
56 views
Refresh an ObservableCollection (overwrite)
How can I refresh the following ObservableCollection?
public class ViewModelProperties
{
private ObservableCollection<ServerProperties> properties;
public ...
10
votes
2answers
100 views
MVVM and collections of VMs
A common senario: A model with a collection of item models.
E.g a House with a collection of People.
How to structure this correctly for MVVM - particulary with regard to updating the Model and ...
0
votes
1answer
60 views
Best collection to use for speed in WPF GUI
I have a listview that contains a list of 'rows', which in term, contains a list of 'columns'. For now, I use List for both rows and columns (i.e. I have a List and it the Rows objet, I have a List, ...
0
votes
1answer
217 views
How to implement an input of time (or dates with times) ranges dynamically?
I'd like to enhance my C# .NET 4.0 multithreaded WPF application by dynamic adding of time rages (BeginTime+EndTime pairs for each, of multiple, range).
And the multiple entered by a user (from 0 to ...
0
votes
2answers
44 views
Custom DependencyProperty in ObservableCollection<t>
How add custom DependencyProperty? This method does not work.
public class SongCollection : ObservableCollection<Song>
{
public static readonly DependencyProperty UrlProperty = ...
1
vote
0answers
94 views
wpf attached property with collection doesnt get updated
I like to share a list between an application and a custom Usercontrol.
I use an IEnumerable as attached property to provide a list to a Listbox inside the custom UserControl. The ListBox then ...
0
votes
1answer
94 views
WPF DataTemplate for Collection
I must now hang my head, for I have scoured the Google for hours and still have no clue what I'm doing wrong.
<DataTemplate DataType="{x:Type local:Controllers}">
<ListBox>
...
0
votes
2answers
109 views
WPF Databinding with nested collections does not update control
I have an Objectmodel with some nested Collections:
public class MainViewModel : BaseViewModel
{
private Dictionary<String, Diagram> _diagrams;
public Dictionary<String, ...
1
vote
4answers
193 views
Pros and Cons of using Observable Collection over IEnumerable
I am trying to decide if I want to switch all of my IEnumerable collections over to Observable Collections. I cannot find a good explanation of this. What are the Pros and Cons of the Observable ...
0
votes
1answer
45 views
Connect data in two classes for use in a View
I am trying to bind an IEnumberable collection to a combobox. I know that the problem is where I am instantiating my ViewModel... The datacontext of my view is a totally different instance and is not ...
0
votes
2answers
185 views
Binding the results of an IEnumerable<class> to a combobox
I am trying to bind the results from a collection in my ViewModel to a combobox. Below is my code. Any help would be appreciated. If you need to see something else or need more information let me ...
0
votes
1answer
67 views
What would be the simplest XAML code to databind this compound (collection) object (WPF)?
Taking the code of this WPF application (or what is the same, this), databinding a а collection (List object (myOrders):
What would be more simple (the simplest possible) XAML script for
such ...
0
votes
0answers
52 views
Interact between two controls bound to the same Observable Collection
I got two controls which are bounds on an ObservableCollection.
I was wondering if it was possible to interact on the control2 from an event fired by the control1, since they are both bound on the ...
0
votes
0answers
60 views
How to reproduce jagged array databinding in wpf application?
I am running the code from
jagged array databinding in wpf using Object data provider
by Bob Bao
under C# .NET 4.0 in VS2010
Though, the problem is that, after many attempts, I should ...
0
votes
2answers
77 views
paginate List of dictionaries in datagrid
I am having my list of data in
System.Collections.Generic.List<System.Collections.Generic.Dictionary<string,object>>
and i have assingned it to the ienumerable type
public IEnumerable ...
-1
votes
1answer
47 views
wpf search in collection
How do I search into my collection ??
Can't get it working... Don't I just have to do :
Contacts c = new Contacts();
if (c.Contact_name == "Test") {
...
0
votes
1answer
77 views
WPF - Can List<T> be used as a dependencyProperty
I have a simple search text box. This text box acts as a filter. I've now copied/pasted the code for the 5th time and enough is enough. Time for a custom control.
left and right brackets have been ...
1
vote
2answers
77 views
Binding TextBox.Text to custom collection does not display custom ToString()
I have a custom collection that extends ObservableCollection and overrides ToString().
If I binding this collection to the Text property of a TextBox like so:
<TextBox IsReadOnly="True" ...
0
votes
3answers
61 views
Assign controls to a property in XAML
Hej all,
I wonder if it's possible to assign more than one control to a property in XAML.
Say I have 2 controls in my XAML:
<Button x:Name="_Btn1 Content="Button 1" />
<Button ...
0
votes
2answers
246 views
C# QuickSort recursive program not sorting
I am trying to understand a quicksort example. I randomly generate 9 numbers and place in a list. The program selects a random pivot. Based on the pivot, the other values in the list are placed into ...
0
votes
3answers
95 views
Databind based on items in a collection matching some criteria
Suppose I have a basic control with a listbox and a text box, where the listbox is bound to a collection of objects and has a basic data template
<DockPanel LastChildFill="True">
...
0
votes
2answers
139 views
Binding collection of objects on a tooltip
Can someone tell me how to bind the tooltip of a StackPanel with its children?
Here's some code I used:
<StackPanel>
... (some UI like grid, textblock, border, ...)
<StackPanel.ToolTip>
...
4
votes
3answers
274 views
Bind trigger to element in parent collection
I have a control, with a dependency property "IsLightOnVal" witch is define like this:
// List of available states for this control
private ObservableCollection<CtlStateBool> m_IsLightOnVal;
...
0
votes
1answer
70 views
How to bind to a collection without using an index of the collection?
I am trying to learn the MVVM pattern in WPF and I am running into some issues with bindings and collections. I don't like binding to the index of the collection because the collection changes.
I ...
4
votes
5answers
422 views
Iterating over large collections in C#: Taking very long
I recently started a WPF application. I connected that to a BaseX (XML-based) database and retrieved about one million entries from it. I wanted to iterate over the entries, calculate something for ...
2
votes
2answers
565 views
CollectionViewSource does not re-sort on property change
I'm binding ItemsControl to CollectionViewSource. Here is code:
this.Trucks = new ObservableCollection<Truck>();
foreach (var truck in DataRepository.Trucks.Where(t => ...
1
vote
2answers
99 views
Creating and erasing objects dynamically
I am writing a sort of image processing program that allows the user to open as many images as they want. Everytime the user opens an image the program has to create an object for it, which is defined ...
0
votes
0answers
139 views
C# WPF Datagrid binding to UpdateCollection
I am having trouble with binding to a particular Collection.
I use Powershell to quickly visualise the data with the following code:
Powershell Code
$criteria = "AutoSelectOnWebSites=1 and ...
0
votes
1answer
102 views
Update databinding for different elements in observable collection
till now I have a observable collection with just one type of objects in it, but now I have second type of objects in it. I have bound some wpf elements to elements of this collection, what I now want ...
0
votes
2answers
575 views
Group Collection of Items by Category in ListView (WPF)
I have a Collection of Items. ObservableCollection<Channel> Channels;
Each Channel contains Name and Category Properties. I want to display this collection in a ListView. Also, I want to Click ...
1
vote
1answer
146 views
Databinding of observablecollection in wpf and fill the gui in a special order
I'm trying to create my gui as much with databinding as possible. There for I have collection of channels which also have list of steps. What I know want is to bind those collections to xaml elements ...
2
votes
7answers
5k views
Find Item in ObservableCollection without using a loop
Currently i have the following syntax (list is a list containing objects with many different properties (where Title is one of them):
for (int i=0; i < list.Count; i++)
{
if(title == ...
1
vote
1answer
210 views
Listview to display ObservableSelection
I have Student table, Course table and a StudentCourse table. On my WPF, I'm making "Student" selections with combo box. How can I display the corresponding Course and its properties(CourseID, ...
1
vote
1answer
169 views
What I want to do is FreezableCollection.AddRange(collectionToAdd)
What I want to do is FreezableCollection.AddRange(collectionToAdd)
Each time I add to the FreezableCollection an event is raised and something happens. Now I have a new collection I would want to add ...
1
vote
1answer
407 views
Cast TextBox control from linq query
I'm trying to get a TextBox control from a collection which only contains TextBoxes as follow:
IEnumerable<TextBox> tbx = this.grd.Children.OfType<TextBox>();
And then I'm trying to get ...
1
vote
1answer
656 views
What triggers UI to update when ItemsControl.ItemsSource changed?
I was just looking into the difference between BindingList and ObservableCollection following this question: Why NOT BindingList in WPF
As part of this, I tested binding the ItemsSource of an ...
2
votes
1answer
405 views
Window.InputBindings with a bound collection
I can't find anything that looks like this online. I am looking for a way to create a collection of Keybindings in the code (with a Keybinding ViewModel), and then bind the collection to the view, ...
0
votes
1answer
764 views
WPF : Binding a collection to an itemscontrol
iv'e got a dll consisting of 3 classes which represent a board game :
Board , Pipe , Checker
the board is a collection of pipes and the pipes are a collection of checkers
an opponent ...
0
votes
1answer
71 views
What object collection should I have to add objects?
I'm using Prism in WPF.
I was watching the Prism starter kit, and it has a ICollectionView. In that collection, I need to add the object selected in it. What object (or collection) should I use to ...
1
vote
1answer
432 views
How to Get SelectedItems From DataGrid Using MVVM
I am building a WPF application using C# and also i used MVVM architecture in my application.
I created ...
0
votes
1answer
162 views
How to Implement Binding Validation for Binding Collection
I am new to WPF and having problem with validation of bound collection.
I have DataGrid that is bounded to collection of polymorphic objects that are grouped together.
The DataGrid has two columns:
...
1
vote
1answer
349 views
How to bind class member in a collection
I want to bind a class member of an element I added to a collection to DisplayMemberPath. I bound a ObservableCollection to ComboBox.ItemSource and want to show the property name in the combobox's ...






