Tagged Questions
The twoway tag has no wiki summary.
5
votes
1answer
345 views
Add editing to MVVM in a hierarchical data structure
This question is a follow-up of this older one, and it's more of a confirmation than an open question.
My ViewModel instance has a private instance of the Model, _modelInst.
The ViewModel has ...
4
votes
4answers
918 views
How to Get Dictionary TValue from TKey in C#?
I declared the dictionary obj.
Dictionary<string, string> aDict = new Dictionary<string, string>();
aDict .Add("IP", "Host");
As I remembered,
The expression of aDict[IP] ...
4
votes
2answers
950 views
Dictionary to ListView TwoWay binding - possible?
I'm attempting to bind a Dictionary to a ListView who's item template constist of a grid with 2 textboxes. Ideally I'd like to be able to modify both the key and the value of the KeyValuePair ...
3
votes
2answers
299 views
Two-way data binding with converter doesn't update source
I've got a data binding set up with a converter to transform an awkward XML source to a display- and editing- convenient tree of internal classes. Everything works great for reading from the XML ...
3
votes
3answers
668 views
WPF: Two-way binding?
I have heard a lot about two-way bindings in WPF, but I'm not entirely clear on how to accomplish it or what it actually means.
I have a ListView with a bunch of items in it. When the user selects a ...
2
votes
1answer
98 views
WPF TwoWay Binding some elements to ObservableCollection
I need bind some ComboBoxes to one ObservableCollection.
I have this ListView.
<ListView x:Name="lwCoefTables" Grid.Column="1" ItemsSource="{Binding Source={StaticResource ...
2
votes
1answer
198 views
Two-way Socket I/O with asyncore or alternative in Python
Am working on the back-end of Django web app that also has to do socket I/O with sensor devices in the field via GPRS using TCP communication.
I'd managed to succeed in obtaining data from the ...
2
votes
1answer
538 views
Silverlight: Two-way Binding for a DependencyProperty (IList) not working
Well..its working BUT only when user creates a property that is of type List.
Here's the complete scenario.
I have a templated control (Multi Select ComboBox with Checkboxes)
User gives a ...
2
votes
1answer
942 views
WPF Two Way DataBinding - an Editable ComboBox to a DataView
<ComboBox Height="23" Margin="52,64,33,0" Name="comboBox1"
IsSynchronizedWithCurrentItem="True"
IsEditable="True"
DisplayMemberPath="Value"
...
2
votes
3answers
1k views
ListBox TwoWay bind to SelectedItem
I've seen this question asked numerous times and have gone over my code over and over. But when I assign to my SelectedItem-bound property with an object, it does not update the display's selected ...
2
votes
2answers
5k views
How can I bind an ObservableCollection to TextBoxes in a DataTemplate?
I am trying to successfully TwoWay bind an ObservableCollection to TextBoxes in a DataTemplate. I can get the data to display properly, but I am unable to change the list data through the UI. I have a ...
1
vote
0answers
189 views
checkbox TwoWay binding
i have a listbox binded to a list. the list contains checkboxes binded to a field/member of the list. what i want to achieve is that i want to delete the data from list when it's corresponding ...
1
vote
4answers
73 views
Simplify/Neatify this two-way loop?
I've got my wires crossed somewhere (or I had not enough sleep). I need a two-way loop, and my current code is just plain ugly.
Problem: I am running along a linear datastructre using an index. I ...
1
vote
3answers
660 views
Bind a control to a single value in a collection/array in WPF
In WPF I have a collection of bool? values and I want to bind each of these to a separate checkbox programmatically. I want the bindings to be TwoWay so that changing the value of the individual item ...
1
vote
2answers
792 views
WPF two-way binding: how do I update a TextBox with a formatted version of the value it just set?
I have a class, called DateField, that has a string Value property. If you set this property to a string that can be parsed into a valid date, the property setter sets Value to the properly formatted ...
1
vote
2answers
5k views
Why is two-way binding in silverlight not working?
According to how Silverlight TwoWay binding works, when I change the data in the FirstName field, it should change the value in CheckFirstName field.
Why is this not the case?
ANSWER:
Thank you ...
1
vote
2answers
3k views
Two way data binding in a GridView
We have an app that uses simple one way binding with a GridView to display some data. Well, now we need to allow the user to change some of that data, so I've been trying to get two way data binding ...
0
votes
2answers
37 views
Bind xaml elements to entities TwoWay
I mean I want to bind an entity property (say Salary) to a property of a xaml element (like a TextBox.Text)
and use this binding to save Text of TextBox to salary field which is bound as a entity ...
0
votes
0answers
105 views
Can Client of a WCF Duplex Service(TCP binding) send and recive at the same time?
My code at the moment looks like this:
Server side:
#region IClientCallback interface
interface IClientCallback
{
[OperationContract(IsOneWay = true)]
void ReceiveWcfElement(WcfElement ...
0
votes
2answers
112 views
Binding textbox to listbox twoway onewaytosource problems?
I use the textName for the user to enter his name. Then typing, the textchanged event updates the listbox with the names that matchs with the input, then the user can click on an item (CompletedName ...
0
votes
1answer
231 views
WPF ComboBox SelectedItem binding
I have a WPF ComboBox and am using MVVM to bind the ItemsSource and SelectedItem properties. Basically what I want to do is when a user selects a specific item in the combobox, the combobox instead ...
0
votes
1answer
455 views
I get Null Object in MVVM Model with silverlight two way binding
I'm new to silverlight and trying to save a form to the database via RIA Services using MVVM Pattern.
I get a textbox value in ViewModel when I bind a textbox to a string in twoway binding mode.
...
0
votes
0answers
212 views
WPF: How to get and set value in a list or dictionary via Binding
I have a class Item and a List of it. The later is bound to a ListBox. I am in the process of writing a DataTemplate for said Item, and I'm trying to add some Checkboxes that are supposed to be bound ...
0
votes
2answers
396 views
wpf twoway binding and update from code-behind
I've ToggleButton defined like this in XAML:
<ToggleButton IsChecked="{Binding DateFilter, ElementName=myUserControl, Mode=TwoWay}"/>
and 'DateFilter' defined like this:
public Boolean ...
0
votes
0answers
512 views
C# MVVM TreeView TwoWay-Binding of hierarchical data
I googled for an answer to this for more than two weeks now. This usually means either I am blind or the idea is absurd. Anyways:
In a middle-sized, quite flexible project I'm storing configuration ...
0
votes
2answers
445 views
Can I use ANTLR for both two-way parsing/generating?
I need to both parse incoming messages and generate outgoing messages in EDIFACT format (basically a structured delimited format).
I would like to have a Java model that will be generated by parsing ...
0
votes
1answer
314 views
WPF Bind User Control Coordinates
Another beginner WPF question from me :)
Ok, so I have a User Control added to a Canvas. In another area of the application I have two TextBoxes that will get 2 values : X and Y. I need a two-way ...
0
votes
1answer
291 views
twoway multibinding validation
i have this case where there is a multibinding for ex,
textbox1 which value depend on textbox2 and textbox3 and the binding is two way,
all textbox applied the same validation rule for ex error if ...
0
votes
2answers
506 views
WPF, two-way binding to a hash table doesn't update the source object
I am wondering if anyone can help, I am able to bind to a hash table and display values correctly, yet the two-way binding I have specified doesn't update the object when I make changes.
...
-1
votes
2answers
41 views
Two way communication between Android device and Server [closed]
I am doing R&D what is the best type of two way communication between Android device and Java Server and how the server can send something to device.
It will be the system in real time. Android ...