I am having some serious trouble creating a WPF TreeView with an Object databinding.
The application is config file editor. I have defined an Object structure which can be serialized to the correct XML format.
The problem I am having is formatting…
I want to populate a combobox control items from an object data provider. The object data provider calls a method on my custom class to get the list of items.
However the method on my custom class expects a parameter before it can return list of…
I am attempting to use an ObjectDataProvider to call the GetPositition method of Mouse, but am getting this error:
System.Windows.Data Error: 34 : ObjectDataProvider: Failure trying to invoke method on type; Method='GetPosition'; Type='Mouse';…
I'm setting up some things in XAML, but for some reason, I'm having an issue. I'm trying to add an ObjectDataProvider to my resources, but when I'm doing that, I get this warning on my resourcedictionnary saying i cannot have multiple items in a…
I want to read/write my entities in flat text file, and due to huge amount of data, Serlization/Deserialization is not proper solution.
Is there any data provider to work with text file data source (like csv,...)?
I have several lookup tables, some of which refer to or are relationships between others.
For instance, I have membership type included inventory which has Membership ID and Inventory Type ID and is the amount of each Inventory Type that one gets…
I'm dealing with a problem in WPF binding.
I'm creating a user control which present a datagrid, fiiltered by 2 possible values.
The first value is set by a textbox, the second one by a combo box.
I'm using an ObjectDataProvider to map a methos with…
I have created a simple MVVM, with only three classes CashFlowView, CashFlowViewModel, CashFlowModel.
I use an infragistic's 9.1 XamDataPresenter (or xamDataGrid).
I am using property grid in a WPF project to display UI items. So basically, for properties of collection type, a comboBox is required. For this purpose I am using Extended PropertyValueEditor. The problem is that for each collection [say Languages…
We used to do this at my previous job and it worked perfect there, but for some reason I cannot get it to work now.
I just want to use an ObjectDataProvider to create an instance of the ViewModel class in XAML so I can reference it for binding, and…