Tagged Questions
The updatesourcetrigger tag has no wiki summary.
5
votes
1answer
2k views
Text on TextBox with UpdateSourceTrigger=PropertyChanged is not updated when coercion of text input results in unchanged source value
I have a text box whose Text property has a TwoWay MultiBinding with UpdateSourceTrigger set to PropertyChanged. The first Binding is to a dependency property (Value) which has a ...
5
votes
5answers
4k views
Workaround for UpdateSourceTrigger LostFocus on Silverlight Datagrid?
I have a Silverlight 2 application that validates data OnTabSelectionChanged. Immediately I began wishing that UpdateSourceTrigger allowed more than just LostFocus because if you click the tab without ...
3
votes
3answers
116 views
A weird behavior of PropertyChanged UpdataSourceTrigger in WPF
I have an entity like this:
public class Person
{
public string Name { get; set; }
public Person()
{
Name = "Godspeed";
}
}
Then I have three textbox and a button in XAML:
...
3
votes
3answers
160 views
Is there a way to globally change the default behaviors of bindings in wpf?
Is there a way to change the default behavior of bindings so i don't need to set 'UpdateSourceTrigger=PropertyChanged' on each, in my case, textbox?
Might this be done via a ControlTemplate or ...
2
votes
2answers
252 views
TextBox UpdateSourceTrigger = PropertyChanged - does it really affect performance?
The MSDN documentation states:
Bindings that are TwoWay or
OneWayToSource listen for changes in
the target property and propagate them
back to the source. This is known as
updating the ...
2
votes
2answers
340 views
UpdateSourceTrigger PropertyChanged in Silverlight?
I am sure most of you have come across this when you type in a textbox you like instantly to filter a ViewCollection according to has been typed.
Its very straight forward in WPF, just change the ...
2
votes
3answers
810 views
MultiBinding binded to elements question
I have a login form that contains a username textbox and a password box.
I want the ok button to be enabled only when both the fields contain a value.
I have a converter that check for all the ...
1
vote
1answer
924 views
How to use update source trigger on Wpf Combobox which is editable?
I have a combo box (in my wpf-mvvm app). I have set IsEditable = true. But the "property changed event" is getting fired when I start typing.
How can I set "UpdateSourceTrigger = Propertychanged" ...
1
vote
3answers
699 views
MVVM UpdateSourceTrigger
I'm working on an MVVM app and have a view that is used to modify a number of network parameters (IP, SubnetMask, etc).
The view contains a number of text boxes bound to properties in a ...
1
vote
1answer
810 views
WPF Data Binding with StringFormat when UpdateSourceTrigger is PropertyChanged
I want to have a textbox append a specific string once the user tabs out of the control, i.e. LostFocus, however I prefer the textbox to validate as the user types, so UpdateSourceTrigger is set to ...
1
vote
1answer
2k views
Silverlight Update/Trigger IValueConverter in Listbox DataTemplate in a DataGrid
I am building an application to display a datagrid bound to an ObservableCollection of Records, where each record has a Course Object and an ObservableCollection of Results Objects.
The course is ...
1
vote
1answer
4k views
Binding UpdateSourceTrigger=Explicit, updates source at program startup
I have following code:
<Window x:Class="WpfApplication1.Window1"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
...
0
votes
0answers
5 views
Trigger AppCache Download
Is there a way to trigger an application cache download? I've seen several webapps which provide a download for offline storage button, but it seems there's no event for this.
Dynamically changing ...
0
votes
2answers
60 views
Custom UpdateSourceTrigger with delay?
I'm looking to create a custom version of UpdateSourceTrigger that I can use with my binding. I don't know if this is possible, or if instead, I'd need to just create my own binding class. What I'm ...
0
votes
1answer
80 views
How to set and get updatesourcetrigger of a textbox in codebehind?
Just a short question :
In wpf, how do I set and get updatesourcetrigger of a textbox in codebehind ?
Thanks
Update :
I follow AngleWPF's code :
var bndExp = ...
0
votes
1answer
135 views
Textbox in listview - update source and move focus on tab not working at same time
I have a listview. I have set following int that :-
<ListView KeyboardNavigation.TabNavigation="Local" SelectionMode="Extended">
<ListView.ItemContainerStyle>
<Style>
...
0
votes
1answer
249 views
Set UpdateSourceTrigger to Explicit in ShowDialog (WPF MVVM)
I saw this example - Binding.UpdateSourceTrigger Property
in the example the UpdateSourceTrigger set to Explicit and then in the view code he call to UpdateSource of the TextBox name.
But if i use ...
0
votes
0answers
75 views
How to refresh converter that is called in multibinding in datatemplate?
I have the list of the products that user can select, and when user selects the product, that product goes in the right part of the screen which is in the other view but they have the same modelview. ...
0
votes
1answer
440 views
Silverlight DataGrid's DataTemplate and Explicit UpdateSourceTrigger
I want a Textbox in a DataGrid's DataTemplate to explicitly update when a user clicks the OK button. I have the following XAML code:
<sdk:DataGrid ...>
<sdk:DataGridTemplateColumn ...
0
votes
1answer
92 views
How can I prevent UpdateSource on calculated bound textboxes as data loads?
As users enter numbers into 3 text boxes I calculate the average in a 4th text box. The CalculateAverage method is called from the TextChanged event of the first 3 text boxes. All text boxes are ...
0
votes
0answers
220 views
UpdateSourceTrigger=LostFocus Toolbar
Hi
In my MVVM app I have a View which contains few textboxes, textboxes are binded to object
<TextBox Text="{Binding Path=EditedObject.FirstName, UpdateSourceTrigger=LostFocus, ...
0
votes
1answer
563 views
UpdateSourceTrigger for Datacontext in Silverlight
Hi
I am working on a MVVM Silverlight app and i use UpdateSourceTrigger Property of TextBox to update the bindingexpression in runtime as follows:
.xaml.cs:
BindingExpression beID = ...
0
votes
1answer
732 views
WPF DatePicker UpdateSourceTrigger PropertyChanged not working
I am using MVVM and want to enable a button on text change of datepicker control..
XAML Code:
Binding on DatePicker
SelectedDate="{Binding InactiveDate, Mode=TwoWay, ...
0
votes
1answer
677 views
Problem with UpdateSourceTrigger=PropertyChanged and StringFormat in WPF
I have a text box in my application which is data bound to a decimal field in my class and the binding mode is two way. I am using StringFormat={0:c} for currency formatting.
This works fine as long ...
0
votes
1answer
602 views
WPF MVVM UpdateSourceTrigger=Excplict
i've a contentcontrol in my Wpf-App (MVVM) which is bound to an object and displays the objects properties in textboxes, so the user can edit the values of the properties.
I want to implement ...
0
votes
1answer
1k views
WPFToolkit DataGrid: Combobox column does not update selectedvaluebinding immediately
I'm using WPF Toolkit DataGrid and DataGridComboBoxColumn. Everything works well, except that when selection change happens on the combobox, the selectedvaluebinding source is not updated immediately. ...
0
votes
1answer
1k views
WPF Update Source Trigger Implementation
I have a custom object Foo with a boolean property called Flagged and when someone successfully types something in a text box it changes flagged to true and updates another textblock on the screen ...
0
votes
2answers
1k views
Why is UpdateSourceTrigger=PropertyChanged not triggering an element changed?
I have this WPF Window:
public Window1()
{
InitializeComponent();
this.Content = new TheForm();
}
Which loads this UserControl:
<UserControl x:Class="TestAutomaticUpdate82828.TheForm"
...
0
votes
1answer
2k views
WPF ListView Binding with UpdateSourceTrigger set to explicit strange behaviour
I have a ListView with different DataTemplates set up to bind. I want to update some of the columns (mix of textblock and progress bar) when I call UpdateSource() on a bindingexpression. I also want ...