-
Following code triggers INPC001 for property `Test`:
```csharp
public class MyObject: IEnumerable
{
public string Test
{
get;
set;
}
…
-
Seems that the OnPropertyChanged is virtual by default, and when initializing properties in the constructor it gets already called.
Calling OnPropertyChanged from within the constructor is usually no…
-
I have a ListView with `SelectedItem={Binding SelectedItem}` and `SelectionMode="Single"`.
First time I click on an item the `CanExecute` func of the command receives null.
After this, when selecting …
-
-
I know that code re-use between desktop/mobile and web is not necessarily the top priority for this project, but there seems to be tremendous opportunity here for just that and I don't think it would …
-
Consider a class implementing ``INotifyPropertyChanged`` which has a method ``OnPropertyChanged`` that raises the ``PropertyChanged`` event. But for various reasons, the EventArgs object is being cach…
-
This does not work:
```cs
mDataManager.MainModel.ClockModelList
.ToObservableChangeSet()
.WhenValueChanged(x => x.Clock.Name)
.Subscribe(newClockName =>
{
Debug.WriteL…
-
We have to figure out how to persist settings. If we can we read/write from the debugger side to `%ProgramData%` that would be best. Otherwise, perhaps a local JSON file?
Some settings are global:
…
-
As far as I'm aware, there are two multi-part matras without a canonical Unicode decomposition. Gujarati's "Candra O" (U+0AC9) and Oriya's "Au Length Mark" (U+0B57).
For purposes of initial reorder…
-
I have created a helper class called ObservableBinding which is like a mini
view model with only a single property Value. I've added an extension method
for binding ObservableBindings to controls and …