Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

3
votes
2answers
336 views

Binding a buttons IsEnabled/Visibility properties using its x:Name as a parameter in a method in the code-behind

I need to pass in the controls name to a method in a security object that returns a boolean value for the IsEnabled property and another method that returns its Visibility(Collapsed, Hidden, or ...
2
votes
1answer
356 views

passing listbox item index as parameter to objectdataprovider

I am currently attempting to use an object data provider to return the colour that I would like to use as a background for each listbox item, with the colour dependent on that listbox items index. ...
2
votes
1answer
107 views

Why my WPF binding not work?

I trying to bind List to Listbox. And at the Button1Click method new instance of MyClass adds in my List<>, but that not visible in my listbox. There my code: public static class ...
2
votes
1answer
2k views

WPF Binding to a method with parameter inside HierarchicalDataTemplate

Is there any way to bind a value to a textblock that is obtained from a method. For example, I pass my Person object into the HierarchicalDataTemplate, from there I can access its Weight property. Now ...
2
votes
2answers
288 views

Reference nested type in ObjectDataProvider markup

I'm trying to use a nested type in my ObjectDataSource a la this article. It doesn't seem to be working for me. <ObjectDataProvider x:Key="myProvider" ObjectType="{x:Type ...
2
votes
1answer
4k views

Is it possible to bind WPF Combobox.SelectedValue to multiple ObjectDataProviders?

Trying to determine if it is possible to bind the SelectedValue of a ComboBox to the inputs of multiple ObjectDataProviders with XAMAL Bindings. I looked at MultiBinding but that appears to be ...
2
votes
1answer
3k views

Using ObjectDataProvider

I cannot believe that nobody has gotten across this or perhaps I'm just missing something. I've got a custom DataSourceController which handles retrieving data and providing it to the rest of the ...
2
votes
1answer
521 views

View lost when refreshing ObjectDataProvider

I'm implementing a textbox filter on a list based on Josh Smith's example at http://joshsmithonwpf.wordpress.com/2007/06/12/searching-for-items-in-a-listbox. Basically, it sets the Filter on the view ...
2
votes
2answers
2k views

Converting XAML ObjectDataProvider to C#

I would like to create my ObjectDataProvider in my C# code behind rather than my XAML. I was wondering how to change this XAML into equivalent C#. The XAML was generated by Microsoft Expression Blend ...
1
vote
1answer
67 views

Bind ObservableCollection to a DataObjectProvider in XAML

I want to bind data to an objectdataprovider. I'm having serious trouble doing it and several methods on the net didn't help me solve them. This is the way I was trying now: <Window.Resources> ...
1
vote
1answer
107 views

how use List<T> within xaml?

So I am pretty sure that up in the definition part I need to include something along the lines of: xmlns:s="clr-namespace:System.Collections.Generic;assembly=?????" but I just do not know what to ...
1
vote
4answers
84 views

Text File DataProvider in .NET

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 ...
1
vote
1answer
208 views

How to pass value to ObjectDataProvider.MethodParameters dynamically in runtime

I wrote this code: public class CustomData { public int F1 { get; set; } public int F2 { get; set; } public string F3 { get; set; } } public class RetrievCustomData : ...
1
vote
2answers
111 views

WPF Binding to Proxy

I have a number of collection classes that implement their own custom update notification. It should be pretty easy to translate these notifications to an INotifyCollectionChanged implementation in a ...
1
vote
1answer
1k views

WPF Data binding: CollectionViewSource and ObjectDataProvider issue

I have a MainWindow.xaml file: <Window.Resources> <CollectionViewSource x:Key="cvs" Source="{Binding Source={StaticResource ResourceKey=DetailsCollection}}" /> ...
1
vote
2answers
640 views

Instantiate and reuse instances of objects in XAML

I want to instantiate objects in XAML, and reuse these instances. I think it should be simple but I'm stuck, I'm probably missing something obvious. Say I want to add Cats to different Rooms (Room ...
1
vote
2answers
475 views

WPF enumeration value as ObjectDataProvider's method parameter

I want to pass for as a parameter for the GetValues method from MyItemSourceProvider a concrete value of MyEnum. How to write it please? <ObjectDataProvider MethodName="GetValues" ...
1
vote
3answers
807 views

WPF binding of string property and Button.Content

I want to bind string property with Button.Content. But why it didn't work? The data class: namespace test4 { public class Test : INotifyPropertyChanged { string _Text = ...
1
vote
1answer
266 views

Can MethodParameters in an ObjectDataProvider be databound to other controls?

I've been exploring WPF and XAML for a while now, but have hit a slight stumbling block revolving around binding to a method. My situation is: There is a ComboBox bound to a DataTable. There is a ...
1
vote
1answer
601 views

WPF data binding - DataGridComboBoxColumn and ObjectDataProvider

I'm trying to code a WPF 4.0 DataGrid that matches a database table, with two entries in particular GroupID and SectionID... GroupID contains a collection of groups, and SectionID should be built from ...
1
vote
1answer
398 views

Using ObjectDataProvider as binding source gives SQL error

I have a weird problem that i can't figure out a solution for: I've made a little WPF app written in C# that uses an attached SQL Server Express .mdf database which i then manipulates through LINQ. ...
1
vote
4answers
2k views

WPF TreeView doesnt display Object Hierarchy

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 ...
1
vote
2answers
2k views

WPF — How NOT to use an ObjectDataProvider?

I have my first WPF working fine with an ObjectDataProvider in the XAML: <ObjectDataProvider x:Key="WaitingPatientDS" ObjectType="{x:Type local:clsPatients}"> ...
1
vote
2answers
3k views

Binding ObjectDataProvider to a property instead of a method

Suppose you have following class: class ProcessController { public List<Process> Active { get { ... } } ... public List<Process> GetProcesses() { ... } } I can use the ...
1
vote
1answer
132 views

Different filtered dataProviders for the same data?

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 ...
1
vote
1answer
2k views

how to share an objectdataprovider in wpf

I am trying to share an ObjectDataProvider resource between my main application and a user control. I define the odp in a separate resource dictionary file that is included in the app and the user ...
1
vote
3answers
943 views

How do you pass “this” to the constructor for ObjectDataProvider in XAML?

How do you pass "this" to the constructor for ObjectDataProvider in XAML. Lets say my presenter class is: public class ApplicationPresenter(IView view){} and that my UserControl implements IView. ...
0
votes
1answer
14 views

Preview pages error caused by invalid argument in Page.Resources

My xaml page includes some resources: <Page.Resources> <cnv:FormattingConverter x:Key="formatter" /> <!-- create an instance of our DataProvider class --> ...
0
votes
1answer
66 views

Remove a sort from CollectionViewSource C#

I have a Collection View Source (CVS) implemented much like you see in MSDN or many tutorials. In my case, a Car class, and a Cars Collection class which is shown in XAML via an Object Data Provider ...
0
votes
1answer
21 views

How to run a predicate on ObjectInstance property of DataTrigger

I have a list saved in the ObjectInstance of the ObjectDataProvider class. When calling my datatrigger i would like to run a predicate on the list and return a value true/false so i can hide/show ...
0
votes
1answer
41 views

Table does not refresh

I have a table that consists of rows of reports. A back bean method that is tied to a check box value change event is getting the row IDs and populating an array (rowsToBeRemoved) with this IDs. ...
0
votes
1answer
61 views

Problems adding an ObjectDataProvider in resources

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 ...
0
votes
0answers
113 views

Problem with binding Enum to ComboBox

I'm having a problem binding Enum values to a ComboBox. I've used the following code: <ObjectDataProvider MethodName="GetValues" ObjectType="{x:Type sys:Enum}" ...
0
votes
0answers
129 views

a null value gets written to the model object when using two DataTemplates in a DataGrid using an ObjectDataProvider and MulitValueConverter

I have a datagrid with two colmns, the first column displays categories and the second one displays codes. The codes displayed on the second column depend on the category displayed on the first ...
0
votes
1answer
1k views

wpf ObjectDataProvider method parameter bind to combobox selected value

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 ...
0
votes
2answers
138 views

Set ObjectDataProvider to be Property of the View

I am using the MVP pattern for my WPF application. I would like to set the ObjectDataProvider to be the Presenter object that I setting in the constructor of my View. I then would like to bind to my ...
0
votes
1answer
425 views

TreeView, ObjectDataProvider, HierarchicalDataTemplate, xsd2Code not showing anything

I have an object hierarchy created with xsd2code. The object hierarchy consist of a root object of type Project which contains an ObservableCollection of Folder named folder which is a recursive ...
0
votes
1answer
416 views

wpf xaml calling a method on the current object

Im attempting to bind to the output of a method. Now I've seen examples of this using ObjectDataProvider However the problem with this is ObjectDataProvider creates a new instance of the object to ...
0
votes
1answer
626 views

WPF, calling method with parameters in XAML's class

I have an ObjectDataProvider in my XAML that references a method in my Window-deriving class. That is, I have NewForm.xaml.cs with class NewForm and the ObjectDataProvider in NewForm.xaml is ...
0
votes
1answer
437 views

ObjectDataProvider in MVVM not neccessary?

I have created a simple MVVM, with only three classes CashFlowView, CashFlowViewModel, CashFlowModel. I use an infragistic's 9.1 XamDataPresenter (or xamDataGrid). <igDP:XamDataPresenter ...
0
votes
1answer
122 views

Bind the value of a parameter in an ObjectDataProvider in WPF

I would like to be able to be doing this : <ObjectDataProvider x:Key="dataProvider" ObjectInstance="uiRoot:App.Current.Controller" ...
0
votes
1answer
65 views

WPF: How can I bind a label to ObjectDataProvider and specify the parameters?

What I need to do is: a) I MUST use custom localization (legacy system) b) Users need to be able to change the localization at will from with the application c) Localization must be done via data ...
0
votes
1answer
909 views

WPF Pass MenuItem selected as MethodParameter to ObjectDataProvider

I am trying to pass Selected MenuItem's Text/Header string as the MethodParameter to my ObjectDataProvider. I have seen examples like these on the internet but haven't been able to adapt it to the ...
0
votes
1answer
409 views

Problem with DataTemplate and ObjectDataProvider refresh

I have a problem with a edit templete of cell in a WPF datagrid (WPF Toolkit). The template is builded with a ComboBox and the ItemsSource of ComboBox are loaded at runtime. This is the mean code... ...
0
votes
1answer
189 views

WPF ObjectDataProvider that supports linq filtering?

Is there an WPF ObjectDataProvider that supports "Where" I mean like in asp.net there is an option to have a dataprovider that supports defining the results? What I actually need is two ComboBoxes ...
0
votes
1answer
257 views

WPF: Binding with nonstatic parameter? (newbie question)

This will probably be obvious but I can't find the best way. I want to show the user's ToDo's in a listbox. These ToDo's are in the database and consist of an Id, UserId and Description. The user ...
0
votes
1answer
477 views

WPF: ObjectDataProvider issue

I am using an ObjectDataProvider declared in the XAML as follows: <UserControl.Resources> <ObjectDataProvider x:Key="odpTheList" ObjectType="{x:Type ...
0
votes
2answers
385 views

WPF Binding to method of a collection element

Im searching for the best practice (or any working solution) for the following scenario: I have an Employee class: public class Employee { public string DisplayName { get; set; } // It ...
0
votes
1answer
597 views

WPF — How to bubble up event from Collection class to main Window

I'm using an ObjectDataProvider to call a class of with IObservableCollection: <ObjectDataProvider x:Key="WaitingPatientDS" ObjectType="{x:Type local:clsPatients}"> ...
0
votes
1answer
406 views

Get Data from ObjectDataProvider when combo box opens

How do I go about getting an ObjectDataProvider to get triggered each time a combo box is expanded instead of just one time? <UserControl.Resources> <ObjectDataProvider ...

1 2