Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
3answers
204 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 ...
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 ...
4
votes
3answers
471 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 ...
3
votes
4answers
104 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 ...
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
1answer
68 views

Evaluation of value in setter not even being checked

I have a property in a composite control that checks to see if the value has changed prior to actually setting the related private field and doing a few other things. However, it appears that it is ...
3
votes
3answers
2k views

WPF Update Binding when Bound directly to DataContext w/ Converter

Normally when you want a databound control to 'update,' you use the "PropertyChanged" event to signal to the interface that the data has changed behind the scenes. For instance, you could have a ...
3
votes
2answers
342 views

Making mocks trigger PropertyChanged when changed

I am using RhinoMocks, and I have a Mock which has a property I need to behave as a real property - updating its value when set, and also trigger PropertyChanged when the property is changed. The ...
3
votes
2answers
372 views

C# - How to determine whether a property is changed

I need to know whether a public property (which has getter & setter) is changed. The property is in a simple class (no user control/component etc). Is there an elegant way to subscribe to some ...
3
votes
1answer
1k views

WPF CustomControl: OnApplyTemplate called after PropertyChangedCallback

I am creating a WPF CustomControl that has a dependency property with PropertyChangedCallback. In that Callback method I try to set values on some of the control's parts that I retrieve from ...
2
votes
2answers
119 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 ...
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
1answer
71 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. ...
2
votes
1answer
433 views

How to use PropertyChangedCallBack

I have a TextBox Binded to a dependancy property, I have implemented a PropertyChangedCallBack function, when the text changes I need to call textbox.ScrollToEnd() but I cant since the PropertChanged ...
2
votes
3answers
903 views

Why use this construct - PropertyChangedEventHandler handler = this.PropertyChanged?

The article http://msdn.microsoft.com/en-us/magazine/dd419663.aspx has the following code sample: public event PropertyChangedEventHandler PropertyChanged; protected virtual void ...
2
votes
1answer
100 views

Change referenceequals to equals in reference.cs

I have a wpf app that uses a wcf webservice. Its my webservice and app, so I can make changes to either side. In the Reference.cs file that gets automatically genereated by visual studio it uses ...
2
votes
1answer
2k views

How to use INotifyPropertyChanged correctly in WPF/XAML

I have a custom object that I am trying to bind to a control. On that custom object I have implemented the INotifyPropertyChanged interface. I have successfully bound to my object and a property on ...
2
votes
3answers
276 views

WPF excessive PropertyChanged events

Typically in the property setter of an object we may want to raise a PropertyChanged event such as, public event PropertyChangedEventHandler PropertyChanged; protected void Notify(string ...
2
votes
1answer
380 views

Locking strategy with PropertyChangeListener

I've defined a class with a number of "observable" properties. Internally the class contains a single thread that performs I/O; e.g. public class Foo { private final PropertyChangeSupport support; ...
2
votes
3answers
2k views

ObservableCollection PropertyChanged event

OK so I want to subclass ObservableCollection to add a property to it. Unfortunately the PropertyChanged event is protected. Basically I want to subclass it to have a SelectedItem that I can bind to ...
1
vote
1answer
78 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 ...
1
vote
4answers
172 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 ...
1
vote
1answer
347 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 ...
1
vote
3answers
736 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 ...
1
vote
4answers
805 views

Why I can't invoke PropertyChanged event from an Extension Method?

I've tried to code a class to avoid a method like "RaisePropertyChanged". I know that I can inherit from a class that has that implementation but in some cases I can't. I've tried with a Extension ...
1
vote
1answer
173 views

Update generic property of generic class?

I'm quite new at C# Generic Classes so I don't know if we can update the generic property of a generic class dynamically? Let say I have a class A { long id; long count; } Can we write an ...
1
vote
1answer
130 views

Where is implementation of PropertyChanged EventHandler?

Im a bit confused. I dont understand what code is actually is executed when I implement INotifyPropertyChanged interface. As i imagine the chain goes like this: My class impliments ...
1
vote
1answer
362 views

How to best implement IPropertyChanged on Timespan subtype?

in .NET (and WPF), I need to monitor changes on a Timespan object which doesn't include any change event like PropertyChanged. What would be the best way to add this functionnality?
1
vote
2answers
101 views

Why does .NET read values of unaffected properties on reception of INotifyPropertyChanged.PropertyChanged event?

I'm new to data binding and encountered the following oddity today which I fail to understand: I have a form with two labels (labelA and labelB) and two buttons (buttonA and buttonB). The form hosts ...
1
vote
1answer
140 views

Some Problem with WPF Databinding but You Have to Guess What Kind

I'm trying to implement a property changed event (or which ever is appropriate) in my wpf project and I'm trying to find the best way to do this. I have this header where it has an expand/collapse ...
1
vote
4answers
3k views

wpf update ListViewItem background property

I have a listview that is binded to a ThreadSafeObservableCollection. The background of each of these items is set to an enum that is run through a color converter, here's the code for these 2 ...
0
votes
0answers
53 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.
0
votes
0answers
17 views

Linq-to-sql Changed event of object not available

I want to be able to capture the Changed event of a Foreign key object, but that doesnt't seem to be possible by default. Example: ObjectA a = new ObjectA(); a.ObjectBID = someID; This triggers ...
0
votes
2answers
112 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 ...
0
votes
1answer
418 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. ...
0
votes
1answer
243 views

Inserting data to XML file notify ObservableCollection

I have a parent window which has a ListView that is bound to an ObservableCollection that gets it's data from an XML file. On the parent window, I have an add button that opens a opens a Modal Window ...
0
votes
2answers
1k views

Entity Framework 4 - How to inject logic in property setter?

I have a property auto-generated from database in my edmx: Description. I then create a "partial class" .cs file for the entity and add a read-only property: ShortDescription. ShortDescription's ...
0
votes
1answer
933 views

PropertyChangedEventHandler is null in FirePropertyChanged

I have a viewmodel named EmployeeViewModel which is inherited from ViewModelBase. here is the implementation of ViewModelBase. public event PropertyChangedEventHandler PropertyChanged; public ...
0
votes
1answer
935 views

PropertyChangedEventHandler PropertyChanged is null

i am implementing PropertyChangedEventHandler PropertyChanged and it's always null. property string is right donno where is the problem here is the code i am using public event ...
0
votes
1answer
467 views

WPF - ObservableCollection PropertyChanged event?

I have an object which has a property of type ObservableCollection<bool>. It is bound to a list of checkboxes on a form using TwoWay bindings. I would like to add a PropertyChanged notification ...
0
votes
2answers
87 views

WPF DataBinding: Bind to a property that references two other properties

Basically, how do I bind (one-way) to a textbox named txtFullName. Initially, any text in the text box gets cleared/blanked out since ToString returns "". But, when I make changes to FirstName or ...
0
votes
1answer
263 views

C# - How do I change the value of a property based on changes to another property (ObservableCollection)?

How do I change the value of TotalPublicationsRead, when the Read property of a Publication has changed? public class Report { public ObservableCollection<Publication> Publications { get; ...
0
votes
1answer
179 views

PropertyChanged Event, raise when OnClick?

I have a WinForms application with some business objects which implement INotifyPropertyChanged and hook the PropertyChanged event via some controls & BindingSource on the form which raises an ...
0
votes
1answer
685 views

Monitor changes to settings in app.config

When I use typesafe application settings, I have something like this in my app.exe.config file: <setting name="IntervalTimeout" serializeAs="String"> <value>10</value> ...
-1
votes
1answer
243 views

Using PropertyChanged from reflection

I want to get a notification when object attribute is changed by using reflection. This is one of class in mjpeg.dll: public class MJPEGConfiguration : INotifyPropertyChanged { public ...