0
votes
1answer
240 views
Prevent property change in databinding and force bound control to show current value
I have
Public Overrides Property UID() As String
Get
Return mUID
End Get
Set(ByVal value As String)
If Me.IsNew Then
mUID = value
…
0
votes
1answer
35 views
ObservableCollection<T> in Winforms and possible alternatives
Hey there!
Winforms .net 3.5 app. In my app I have a generic class that looks like so:
public class FilterItem {
public FilterItem() { }
public string FilterProperty { get; set; }
public bool …
0
votes
2answers
27 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
48 views
Bind Winform control property to a property on User Control using INotifyPropertyChanged
Hi there!
Please advise me. Winforms app, C#. I have a user control (UC) that contains a DataGridView.
Firstly, I have a boolean public property in the UC called "IsComplete". in the RowEnter …
3
votes
3answers
102 views
Enforcing the correct implementation of INotifyPropertyChanged with CodeContracts - “requires unproven”
I'm looking for an easy way to enforce the correct implementation of INotifyPropertyChanged i.e. when PropertyChanged is raised it must reference a property that is actually defined. I tried doing …
1
vote
2answers
27 views
Why does .NET read values of unaffected properties on reception of INotifyPropertyChanged.PropertyChanged event?
Hi everyone!
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).
…
0
votes
3answers
65 views
.net propertychange notification handlers - strings vs. expressions
Using WPF has made me a fan of INotifyPropertyChanged. I like to use a helper that takes an expression and returns the name as a string (see example code below). In lots of applications I see by very …
0
votes
1answer
125 views
Data Binding using INotifyPropertyChanged (.Net)
Hi, I'm trying to find a good way to implement MVP in classic Winforms, and a couple of solutions I've come accros (e.g. …
2
votes
1answer
80 views
F#: Using INotifyPropertyChanged for data binding
How would one implement INotifyPropertyChanged for use in an F# type?
Thanks!
0
votes
1answer
56 views
Silverlight, Unity and INotifyPropertyChanged
I'm starting a new Silverlight project at the moment, and I'm having issues where by Unity is throwing an exception if my ViewModel (which it is instantiating for me) contains the RaisePropertyChanged …
4
votes
7answers
281 views
Is there a good strongly typed way to do PropertyChanged events in C#?
It must be a somewhat common event to change the name of a property and expect the Rename functionality in Visual Studio to take care of all the necessary renaming, except for the property name of the …
0
votes
1answer
32 views
DataBound UserControl and PropertyNameChanged Event problem in .net winforms.
I have a UserControl, with a TextBox and a databound property - Value.
Value can be any object such as a Color, Array, Font etc.
Any time the text changes, the property Value is changed as long as it …
0
votes
2answers
76 views
WPF INotifyPropertyChanged not updating on an array property?
I created a small example to demonstrate the issue I'm having.
First my class:
public class DisplayRow : INotifyPropertyChanged
{
public event PropertyChangedEventHandler PropertyChanged;
…
0
votes
1answer
63 views
How to implement DataTable property with INotifyPropertyChanged
I have created WPF MVVM application, and set WPFToolkit DataGrid binding to DataTable so I want to know how to implement DataTable property to notify changed. Currently my code is like below.
public …
0
votes
1answer
27 views
PropertyChanged Event, raise when OnClick???
Hi,
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 …
