INotifyPropertyChanged is an interface defined in Microsoft .NET used to notify listeners of data changes made to an object. These notifications enable data-bound UI controls to update their display automatically whenever the data properties they are bound to have changed.
0
votes
0answers
16 views
When PropertyChanged called event PropertyChanged=null
I have a class derived from INotifyPropertyChanged to track property changes. This properties are bound to a TreeView and are needed to perform searching in TreeViewItems. When in properties setters ...
2
votes
2answers
32 views
PropertyChanged method assignment
I've implemented the INotifyPropertyChanged interface for a simple WPF view-viewmodel and when I call my
protected void RaisePropertyChanged(string propertyName)
{
if (PropertyChanged != null)
...
0
votes
1answer
19 views
How to implement a property changed notification without making an explicit call?
In WPF there is the concept of two-way data binding, where when an object property value is updated in the db, it the framework also updates the view when the INotifyPropertyChanged interface is ...
0
votes
3answers
29 views
Change Notification from DispatcherTimer
Just when I thought I finally had a grasp on WPF change notification, some bugger of Timer destroyed my illusions...
public MyModel _objectToRefresh;
public Refresher(MyModel ...
2
votes
1answer
22 views
Observable binding to two ICollectionView of same collection
So I'm using WPF in the MVVM way using Caliburn.Micro as a framework.
I have a ViewModel with a ObservableCollection that I need to show twice with different sorting, filtering and grouping.
I'm ...
0
votes
2answers
67 views
Alternatives to OnPropertyChanged
I'm trying to work out an issue I'm having with implementing MVVM in WPF. My Contact class below is my model that's being populated by Entity Framework.
public class Contact : INotifyPropertyChanged
...
3
votes
2answers
98 views
If a model implements INotifyPropertyChanged, how should ViewModel register/deregister for PropertyChanged event?
I have a Model which implements INotifyPropertyChanged and it may get updated by a background business thread. Its related ViewModel also implements INotifyPropertyChanged. And their View obviously ...
0
votes
1answer
30 views
ListView not Updating on a PropertyChanged Event
I have the following code, but the problem is that PropertyChanged is always null when I try to fire it. Why is that, and how could I get around this?
Creating the ListView programmatically and ...
1
vote
2answers
46 views
When a property is changed several times very quickly, how many PropertyChanged events are sent?
I have some code that implements a PropertyChanged event (similar to the snippet below).
private void SendPropertyChanged(string propertyName)
{
if(PropertyChanged != null)
...
2
votes
1answer
40 views
How to add a delay to a WPF program without blocking the UI
I am building a device emulator. When it starts, it takes some time for it to initialized. This would be logically represented by being turned on and going immediately to an "Initialization" state, ...
0
votes
2answers
49 views
How to decompose expression to satisfy generic property change method?
I have a base EF entity class which implements INotifyPropertyChanged.
The base property, Id is my example:
/// <summary>
/// Entity Id
/// </summary>
public int Id {
get ...
0
votes
0answers
32 views
DataTrigger in silverlight 4 is not updating while INotifypropertyChanged
here is my code:
xaml:
in the usercontrol section:
<DataTemplate x:Key="SensorDataTemplate">
<Border BorderBrush="White" BorderThickness="2" Width="190">
...
2
votes
2answers
52 views
Does CallerMemberNameAttribute use reflection
You can use the CallerMemberName attribute to avoid specifying the member name as a String argument to the called method when implementing INotifyPropertyChanged interface.
The question is does it ...
0
votes
2answers
95 views
ObservableCollection with INotifyPropertyChanged into DatagridComboboxColumn Binding
My little project looks now quite different. Now I have ObservableCollection PackagesList with data which I want to bind with whole DataGrid (via Binding Path) and ObservableCollection ...
1
vote
1answer
37 views
MonoTouch INotifyPropertyChanged without large framework
I have a monotouch application that I want to have some MVVM characteristics using INotifyPropertyChanged.
I do not want to include a MVVM framework like MvvmCross to get this working.
I could ...
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 ...
0
votes
1answer
49 views
ListView do not get updated even with INotifyPropertyChanged interface
I have a UI element which is a listview that contains in it another listview (one vertical and one horizontal).
The Itemsource of the the First listview is an ObservableCollection of Objects, which ...
0
votes
1answer
56 views
Property Change event is null even after I registered it
I use INotifyPropertyChanged to notify class when there is any change in a variable of a particular object within it.
Below is the class:
public class MyClass
{
public SecClass MyObj { ...
0
votes
0answers
21 views
Raising Time Based Property Changed events on a large number of Objects - say 1 million
I have a requirement where the Time spent on job is logged for every employee.
That is , there is a DateTime or Timespan field that measure the time , which is updated every 1 second automatically.
...
3
votes
1answer
211 views
Implementing INotifyPropertyChanged using LINQ-to-SQL
I'm builing a Windows Phone 8 app using LINQ-to-SQL for my entities. My current implementation uses the simple INotifyPropertyChanging/INotififyPropertyChanged methods:
[Table]
public class Item : ...
0
votes
1answer
143 views
mvvm-light View Model not fully data binding across multiple assemblies
We have a project which has this project assembly structure:
Training Model
XAML form which is databound to the model through a mvvm light view model/locator
This all works fine.
On a load event, ...
1
vote
1answer
35 views
M-V-VM: What is the best way to handle model data that is generated dynamically from XmlSerialized data
I have both, actual user-generated data and data that depends on it (like the background color of UniformGrid cells that is used to indicate dupe values in the grid, which is calculated each time an ...
0
votes
1answer
79 views
Binding Refresh on a dataGrid WinForms
Hey guys I have problem with binding and refreshing binding.
I am using Entity Framework with WindowsForms...
I am retrieving orders from Shipping Queue and binding them to the grid.
if I open ...
0
votes
0answers
56 views
ListViewItem background not refreshing until parent TabControl switches tabs
I have an older WinForms application (.NET 3.5) that I'm adding some new functionality to. I'm replacing a Form with a TabControl in it where each tab has a ListView within it. The setup will be the ...
1
vote
1answer
37 views
EventTrigger sometimes fails to fire
I'm yet again a bit stumped, and was hoping someone could please help.
Apologies in advance to the long code.
Issue - I have a DataTrigger that starts off firing as expected, but it eventually fails ...
1
vote
2answers
826 views
Binding Pivot control with Observable Collection MVVM (windows phone 8)
I'm new to WP8 & MVVM. I created wp8 app which requests various bits of data once a user has logged in. I just can't get my pivots header to get created dynamically and I don't know if it is ...
1
vote
3answers
72 views
Re-implementing the same event invoker
I'm writing a few classes and I want to make them all "data-binding compliant" (for WPF, or even the probably rarer WinForms) by implementing INotifyPropertyChanged.
The issue is the repeated code. I ...
0
votes
0answers
140 views
EventTrigger in XAML when a property changes?
I have this code (it's working, so far);
<Image Name="img_person" Tag="{Binding Path=MyProperty1, NotifyOnTargetUpdated=True}" Canvas.Top="0" Canvas.Left="0">
<Image.Triggers>
...
0
votes
3answers
49 views
WPF DataBinding : Object does not contain what I entered in textbox
I am new in WPF and i wanted to test DataBinding, so I wrote the code below :
<Window x:Class="testdatabindingcustomobject.MainWindow"
...
0
votes
0answers
15 views
can inotify monitor content changes in sub-directories of a parent Directory
I want to use inotify to monitor changes in all sub-directories at different hierarchy levels of a parent directory. Is this possible ??
0
votes
0answers
154 views
How to make a textbox control subscribe to the propertychanged event of a typed datatable(winforms)
I have a typed dataset(CustomDataset) created with "dataset designer" visual studio 2010. I want to implement the INotifyPropertyChanged for the datatable (the only datatable in the CustomDataset).
...
0
votes
1answer
50 views
Composite Model Binding Performance with INotifyPropertyChanged
I'm currently working on a solution that has a set of composite ViewModels that are mapped from domain models coming back from a set of data access services.
So far I've had a good amount of success ...
0
votes
1answer
92 views
C# Explicit inheritance breaks my INotifyPropertyChanged
This might be little bit stupid question but I could not find any work-around or think of any solutions to the following problem...
public class Example: IExample, INotifyPropertyChanged
{
...
0
votes
1answer
117 views
How can I analyze an exception like this?
When debugging my application I get the following exception.
I know it has to do with an update method for an INotify property, but how to find out exactly what's going wrong. I can't get a decent ...
1
vote
1answer
34 views
Custom object as a DependencyProperty
I have a custom class, MyPerson. All (relevant) properties implement INotifyPropertyChanged.
I created a UserControl to display it, and it all worked fine. Binding to properties like ...
0
votes
0answers
35 views
How do I refresh the Properties Window in a Visual Studio extension?
I'm writing a Visual Studio extension that allows editing the properties of an object in the Properties Window. I use the ITrackSelection interface to select the object I want to edit, and it all ...
2
votes
1answer
47 views
Updating View in ViewModel
Let's say I have a property that is binded to a TextBlock. Let's say the binding looks something like this:
public string Data
{
get { return _text; }
set
{
_text = value;
...
0
votes
2answers
75 views
Confused about Binding in UserControl
I'm creating a UserControl object, and i'm trying to assign values using Binding (with PropertyChanged). I made a prototype, when I assign value in ViewModel , the value does not appear or modify the ...
0
votes
1answer
263 views
How to bind to SelectedItem property of WPF TreeView?
I have adapted the TreeView Control sample project here for use with Entity Framework objects. It works beautifully, but like many others attempting to update collections or properties on their ...
0
votes
1answer
100 views
NotifyPropertyChanged through code
I have a class that contains two other objects.
A variable in the first object bind to WPF element, call it X.
A similar variable in the other object.
I want that when the PropertyChanged event ...
0
votes
2answers
345 views
WPF Observablecollection with INotifyPropertyChanged for ListView doesn't work
I have a wpf application and I want to update my listview when I add new value through the UI using Observablecollect. But I don't get what I expect. When I add new value I won't update my list view.
...
0
votes
1answer
33 views
How to bind to all elements in a BindingList?
I have a BindingList consisting of objects of a class that implements INotifyPropertyChanged.
public MyClass : INotifyPropertyChanged
{
// ...
}
var element1 = new MyClass();
var element2 = new ...
0
votes
1answer
63 views
RX PropertyChanged GroupBy deadlock
I am trying to use Reactive Extensions to throttle PropertyChanged notifications. There are examples of doing this using GroupBy, but with one Subscription created for each PropertyName.
I want to ...
0
votes
1answer
66 views
Providing Doxygen with documentation stubs for library classes
I have a number of classes in my project that implement INotifyPropertyChanged. I'd like all the PropertyChanged events in each one to be able to inherit the documentation from the interface, but ...
0
votes
3answers
103 views
ObservableCollection updating elements content : not getting notifications
i've bound my datagrid to an observable collection of my ViewModel element, and then i linked it to a NotifyCollectionChangedEventHandler event:
obsListOfClients = new ...
0
votes
2answers
102 views
MVVM INotifyPropertyChanged in dynamically changed arrays
In my hobby project I have the following situation:
I'm using C#, WPF, MVVM (well MVVM: try to)
I load a binary file with information and store it in a list of (unsigned) bytes. I have a class ...
1
vote
3answers
138 views
MVVM INotifyPropertyChanged with Automatic Property Name implementation
From my understanding, we can use the INofityProperty in a MVVM style application with code similar to the following
object _SelectedPerson;
public object SelectedPerson
{
get
...
0
votes
0answers
105 views
DatagridComboboxColumn binding via INotifyPropertyChanged
My little project looks now quite different. Now I have ObservableCollection PackagesList with data which I want to bind with whole DataGrid (via Binding Path) and ObservableCollection ...
0
votes
2answers
69 views
Updating dependent property once instead of twice
In my ViewModel I have two properties type of Datetime. They are bound in XAML with TwoWay mode. When I update each of them - OnPropertyChanged raises in set part of this Datetime property for the ...
1
vote
1answer
487 views
MVVM CallerMemberName and “magic strings”
New C# 5.0 release introduced something to get rid of "magic strings" in INotifyPropertyChanged implementation like:
OnPropertyChanged("CustomerName");
Now it is possible to write just:
...






