Tagged Questions
1
vote
4answers
54 views
Passing values to IValueConverter
I have a ListView that has a Grid with two columns and many rows. Each row has a TextBlock in each column with each Text property binded to a value in ListView's ItemSource. I need to do some ...
1
vote
1answer
13 views
Using ValueConverter to position a Line relative to its parent ActualHeight and another ViewModel property
I have a property in my ViewModel called RelativeHeight, which is a double ranging from 0 to 1.
In my View, I have an horizontal line whose width is the same of its container (via Element Binding), ...
1
vote
2answers
56 views
WPF Radio Button Fires Converter in strange order
I am writing a simple program using the MVVM Model on WPF. Basicly when the user clicks a radio button in a group of radio buttons, it will update a property in the View Model with the new Account ...
1
vote
1answer
15 views
is a good idea to use the view model as converter?
I have read this text:
https://groups.google.com/forum/?fromgroups=#!topic/wpf-disciples/P-JwzRB_GE8
is it a good idea that the model has the responsability to convert the type of data? If the view ...
0
votes
1answer
43 views
is it possible the binding to two properties?
I have a view model that has two properties. One of them is myDataGridSelectedItems, that is update in the selection changed event of the datagrid (I am using MVVM light to convert an event to ...
0
votes
2answers
111 views
Using an IValueConverter to enable/disable button's IsDefault Property
My view has 2 buttons called BrowseButton and UploadButton.
BrowseButton is default and UploadButton is not. My goal is for the default to change after BrowseButton is clicked (ie BrowseButton is not ...
3
votes
1answer
98 views
Semantically, should Commands and Converters be closer to Views or ViewModels?
I'm wondering if in MVVM I should design Converters and Commands be closer to Views or ViewModels. It's a gray zone for me as they are two types of glue objects bridging the gap between components. ...
0
votes
1answer
101 views
Binding to a dictionary
I think I have a rather interesting problem. I have a model where the main data structure really needs to be a dictionary.
I want to bind the values of that dictionary to a listbox.
I have an ...
0
votes
1answer
401 views
MVVM IValueConverter Convert method getting empty string argument when expecting a float
This may get a tad long, but here goes. I have created a small, wizard-style sample app using the MVVM pattern (basically a dumbed-down version of the code in my "real" app). In this app, the main ...
0
votes
1answer
270 views
ListBox with IValueConverter of Bool To YesNo…almost works, but not quite
I'm attempting to use a Listbox to display Yes/No and bind to a bit field in my Sql Server Database.
Does my code (especially my binding) look correct?
When using this, it work for creating a record ...
2
votes
2answers
867 views
How can I set a dependency property on a static resource?
I'm trying to get around the fact that I can't specify a dynamic value for ConverterParameter. See my other question for why I need to bind a dynamic value to ConverterParameter - I don't like the ...
8
votes
4answers
4k views
WPF MVVM Radio buttons on ItemsControl
I've bound enums to radio buttons before, and I generally understand how it works. I used the alternate implementation from this question: WPF: How to bind RadioButtons to an enum?
Instead of ...
0
votes
1answer
188 views
Visual Studio crashing when using IValueConverter
I have a class that implements IValueConverter. Every time I build build my solution, visual studio crashes right after the build is successful.
public class BoolToEditOrCreateConverter : ...
2
votes
2answers
714 views
WPF ValueConverter Binding - Something's Wrong
Imagine you have a list of user selections. Depending on what selections the user has made, other selections may not be available anymore.
I have a ValueConverter that could potentially handle this. ...
0
votes
1answer
452 views
WPF: MVVM - Disable command attached button on ivalueconverter convert exception
I have a simple scenario and a issue with it witch I just cant seem to resolve past few days.
OK, first of all I use MVVM to bind my View on a ViewModel. I have in my view several textboxes witch ...
0
votes
1answer
419 views
MVVM: Binding Convertors with Strongly Typed DataContext
I am in a great need of an idea;
This is what bothers me:
I have one View, named 'DropDownView '
This is how I use it:
<control:DropDownView DataContext="{Binding StronglyTypedViewModel}"/>
...
1
vote
2answers
528 views
M-V-VM WPF: Way to maintain Databinding while passing parent object of Databound object into IValueConverter?
I'm using model-view-viewmodel I currently have a class with 3 pieces of data: 2 integers and an enumeration.
Its constructor looks like this:
//C#
public Outcome(OutcomeEnum outcomeEnum, Int32 ...
2
votes
2answers
2k views
WPF and MVVM: Changing data binding converter at runtime
I am using WPF and the MVVM pattern in my user interface. In my ViewModel I have a List containing distances in millimetres, which I display in a ListView by binding ListView.ItemsSource to the List. ...
0
votes
1answer
826 views
Getting a reference to the ViewModel from an IValueConverter
Is there a clean and/or an accepted standard way of referring back to the ViewModel from an IValueConverter, or does that break the MVVM pattern? Basically, I want to convert bound data in the UI ...
