The propertychanged tag has no wiki summary.
0
votes
1answer
49 views
InvalidOperationException by using Rhino mocks and databinding
I'm writing some unit tests for a class (in example called ClassUnderTest) which has a property binding to a property from its model. As the model is defined with a interface (IModel), the model is ...
0
votes
1answer
75 views
Silverlight PropertyChanged event not firing in two-way textbox binding
If a class property is Two-way bound to the text property of a textbox, when I change the text in the text box, is the "PropertyChanged" event of the class supposed to fire? It doesn't in my case - ...
0
votes
1answer
34 views
Detect when register to the property change event
I have a Property Change event and I want to know when register to it.
Here my event in class1:
public event PropertyChangedEventHandler PropertyChanged;
Here my register in class2 (MyObj is an ...
1
vote
0answers
193 views
WPF ListView with DataTemplateSelector: PropertyChanged always sets focus to ListView
i'm really frustrated with this problem, but maybe it is really trivial and i just can't see where the problem is. The situation is the following:
I have a ListView that is bound to an ItemsSource. ...
0
votes
0answers
83 views
How to write PropertyChangedEventHandler properly
I have a simple ViewModel:
sealed class PropertyChangedSource : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged = (s, e) => { return; };
public void ...
0
votes
0answers
294 views
Validating currency with UpdateSourceTrigger=PropertyChanged WPF TextBox C# Regex
I thought I had this, but there is a problem when I type, for example 6.5. Using my code below, there is an error thrown because, essentially, "6." gets converted to just "6" after the "." is typed ...
0
votes
1answer
109 views
Capture property change using its setter
I want to be notified when a property changes so that I can log the oldvalue and new value of the property in database.
So I decided to go with the approach of property setter and have a generic ...
0
votes
0answers
247 views
WPF User Control Access Dependency Property from Code Behind
I've got a WPF Prism application (using Autofac as the DI engine). I have a Parent UserControl (MachineTabView in this code) containing three instances of a specific UserControl (HMIProcessControl). ...
0
votes
0answers
28 views
In a subclass of a WPF control, what's the most effective way to detect when the parent changes?
In a subclass of a WPF control, what's the most effective way to detect when the parent changes? I'm wondering if the proper thing is to subscribe to changes to the Parent property (there's no event ...
2
votes
1answer
166 views
WebBrowser OnPropertyChange event is not firing
I have a webpage, and an input button on it. Clicking on this button, in a specific div are loaded some data. My problem is that I can't catch this data.
The following code is my attempt to solve ...
0
votes
3answers
238 views
Subscribe PropertyChanged events of window in C++/CLI
I just tried to subscribe to WPF property change events using C++/CLI. I didn't expect this to get difficult.
First I tried to subscribe to a specific property of some window (IsMouseDirectlyOver) ...
0
votes
2answers
72 views
Why am i using UpdateSourceTrigger=PropertyChanged ,TwoWay is not enough?
hi; there are Source and target textbox txttarget has a binding to txtsource. when writing something in txtsource, txttarget is changed.Everything is good. But writing on txttarget, i dont see any ...
1
vote
0answers
68 views
How to detect property changed in base class
I created a custom control inherited from Label, I added a string property SecondLanguageText.
I want to detect when the RightToLeft property of base class (Label) changed to replace text property ...
0
votes
0answers
51 views
C#: Avoid onpropertychange to be raised
I have a third-party which offers a method that I can override, OnSourceValueChanged. Internally, I suppose third-party launches this method when the value of a property has changed. I say "suppose" ...
0
votes
1answer
355 views
How to pass initialization parameters to UserControl in WPF (using MVVM)
I have a UserControl called ActionsTreeView I built using MVVM practices where I have an IPluginsProvider interface that populates the data in my UserControl. I want to be able to provide an object ...
0
votes
1answer
861 views
Dependency Properties' PropertyChangedCallback not getting called
If have an own user control with a DependencyProperty and the corresponding callback method like below:
public partial class PieChart : UserControl
{
public static readonly DependencyProperty ...
2
votes
1answer
445 views
ObservableCollection through WCF
I'm trying since days to get a PropertyChanged event from my wcf-service to a wcf-client if a collection on server side has changed(by client action or server action).
There must be a better solution ...
1
vote
1answer
408 views
How to assign PropertyChanged event handler to ObservableCollection owner
I need to handle the PropertyChanged event of an item in an ObservableCollection within the owner of the ObservableCollection. There has to be a more elegant way than:
...
0
votes
0answers
55 views
ExpressionTextBox how to force Binding PropertyChanged
I have ExpressionTextBox as fallows:
<sapv:ExpressionTextBox HintText="{Localization:ResxBinding HintText_EnterVBExpression}"
Expression="{Binding Path=ModelItem.To, Mode=TwoWay, ...
1
vote
1answer
123 views
How do I subscribe to property changed events raised from child objects?
I have an Invoice object that exposes a readonly property - Total. This total is just the sum of the total of the invoice items:
public decimal Total { get { return this.InvoiceItems.Sum(s => ...
0
votes
1answer
463 views
PropertyChanged event null after setting DataContext
I am setting the DataContext for my View in the View's Constructor to an instance of my ViewModel, just standard stuff. Shortly thereafter, an UPDATE_RECENT_DOCUMENTS_LIST Event fires from the Event ...
0
votes
1answer
132 views
Bound animation plays more than once
I use a MVVM and i came to a situation where i need a button to trigger an animation.
So i set and EventTrigger for it and it runs this animation:
<DoubleAnimation
(...)
From="{Binding ...
3
votes
2answers
466 views
Raise an event when Property Changed using Reflection
I am working in C# and I have an object which I can only access using Reflection (for some personal reasons). So, when I need to set some value to one of its properties I do as below:
...
0
votes
0answers
167 views
Bing Map with Silverlight attached behaviors not getting a changed event
I want to redraw my Bing map view, zooming in on a set of points, but I dont want to use the map.SetView that is done in code behind as I want to stay as MVVM as I can. I created an object ...
0
votes
3answers
136 views
How to get notified whenever a certain field changes on any item inside an ObservableCollection?
public ObservableCollection<Activity> activities =
new ObservableCollection<Activity> { };
public class Activity{
public ObservableCollection<Event> Events { get; set; }
}
...
5
votes
1answer
1k views
What can i do with RaisePropertyChanged?
i'm using MVVM Light in a windows phone silverlight application. I don't really get how RaisePropertyChanged should works, let me explain: in code like this
private Recipe selectedRecipe;
public ...
2
votes
1answer
311 views
WPF ValidationRules disables PropertyChanged
I have the following textbox that have a propertychanged in the viewmodel.
When I insert the Binding.ValidationRules and I insert some wrong value, it doesn't trigger the propertychanged event and I ...
1
vote
0answers
223 views
Since when do we have UpdateSourceTrigger = PropertyChanged in Silverlight 4?
I'm developing in Silverlight 4 and in time I got used to having two choices for the UpdateSourceTrigger property of bindings: Default and Explicit. But today I found out I can also choose ...
0
votes
0answers
79 views
Accessing the first level of a treeview in WPF
In my TreeView I have the following hierarchy:
A <- TreeView header
__B <- TreeViewItem
__B <- TreeViewItem
So there is always max 1 level of depth.
In A (treeview.header) I put a ...
1
vote
1answer
375 views
Calculate result of two values on Property Changed MVVM
I am trying to Calculate the "NetAmount" by the following simple formula in MVVM
GrossAmount + Carriage - Discount = NetAmount
I am using MVVM Light Toolkit and declared properties as follows
...
0
votes
2answers
160 views
How to get notifications from nested properties in C#/WPF?
I have the following property in my view model and the view is binding to this property.
All works fine except for a special case where the ActiveCategory (within the _catManager) can change from ...
0
votes
1answer
671 views
Editable WPF ComboBox does not fire PropertyChanged
I have a not editable ComboBox to display all tables of and SQL Database.
<ComboBox Grid.Column="1"
Grid.Row="2"
Height="23"
...
2
votes
0answers
431 views
TextBox bound to Decimal with UpdateSourceTrigger=PropertyChanged
I've been battling this issue for a while now and seem not to be able to come up with a concrete workaround - I have a TextBox which is bound to a decimal, and the binding has UpdateSourceTrigger set ...
2
votes
1answer
62 views
Overriding methods with actions as parameters
I have a set of methods that allows users to easily user the PropertHasChanged event and allows then to do some extra processing. Here is the method:
public virtual void ...
0
votes
2answers
1k views
Monitor a change in property
I have 2 properties to a class (WPF control): HorizontalOffset and VerticalOffset (both public Double's). I would like to call a method whenever these properties change. How can I do this? I know of ...
1
vote
1answer
341 views
NullReferenceException Using Treeview and PropertyChanged
I'm getting a NullReferenceException when updating a bound property in my view model. This only happens when I use the treeview control in the view. If I replaced it with a list, the exception goes ...
0
votes
0answers
114 views
Which is faster to use binding using converter or update in a property changed callback?
I need fast updates, so I was wondering which one is faster and more efficient.
4
votes
4answers
2k views
List<string> INotifyPropertyChanged event
I have a simple class with a string property and a List property and I have the INofityPropertyChanged event implemented, but when I do an .Add to the string List this event is not hit so my Converter ...
1
vote
1answer
428 views
Prism + MVVM + Access Keys + UpdateSourceTrigger=“LostFocus” — This doesn't let me save an updated textbox without first losing focus
Not really sure how to tackle this issue:
I have a "Save" button that has access keys attached to it... but, if I type something into a textbox and press the access keys to save, the textbox doesn't ...
2
votes
2answers
933 views
jFormattedTextField's Formatter.setCommitsOnValidEdit(true) doesn't work at first focus
I have a jFormattedTextField and I set setCommitsOnValidEdit to true then I added an event listener to "property change" on "value" property.
At first focus of that jFormattedTextField it doesn't ...
0
votes
2answers
449 views
Binding to Dictionary ValueCollection
I have a Dictionary whose ValueCollection consists of classes, which is exposed as a property in my VM, and bound to a DataGrid on the UI. My problem is that the Dictionary is populated ...
4
votes
3answers
436 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:
...
7
votes
4answers
945 views
PropertyChangeSupport for SpinnerNumberModel
I want to listen to the changes of the value of the SpinnerNumberModel for a JSpinner.
I create a PropertyChangeSupport and put the model into it.
I need the propertyChangeListener, because it shows ...
2
votes
4answers
965 views
Raising a PropertyChanged event during a Pause in TextBox entry?
I was wondering if it's possible to raise a PropertyChanged event when the user pauses while typing text into a TextBox? Or more specifically, I want to run a method X seconds after the user stops ...
0
votes
1answer
964 views
WPF DataGrid with textbox in template column not firing property changed
I have a datagrid with a template column, and in that template is a textbox. It's bound to the 'Quantity' property of the object in the collection that makes up itemssource. Quantity is an integer. ...
4
votes
1answer
2k 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
1answer
235 views
Silverlight: Setting property directly removes data binding?
I am modifying a Silverlight project which heavily uses the code behind for setting properties and such. This was created a few years back and was more or less ported over from a WinForms project.
...
7
votes
2answers
3k views
In WPF, why doesn't TemplateBinding work where Binding does?
Ok... this is leaving me scratching my head. I have two WPF controls--one's a user control and the other's a custom control. Let's call them UserFoo and CustomFoo. In the control template for ...
2
votes
1answer
2k views
WPF Catch ObservableCollection's item property changes
Hi I was trying a few ways of doing this but either wasn't successful or it wasn't ideal. I simply want to
catch the PropertyChanged event of any item in the collection. I have wired it up manually at ...
2
votes
4answers
3k views
WPF: PropertyChangedCallback triggered only once
I have a user control, which exposes a DependencyProperty called VisibileItems
Every time that property gets updated, i need to trigger another event.
To achieve that, i added a ...
