using ExampleCalculatorApp.Views; using NodeNetwork.Toolkit.ValueNode; using ReactiveUI; namespace ExampleCalculatorApp.ViewModels { public class IntegerValueEditorViewModel : ValueEditorViewModel { static IntegerValueEditorViewModel() { Splat.Locator.CurrentMutable.Register(() => new IntegerValueEditorView(), typeof(IViewFor)); } public IntegerValueEditorViewModel() { Value = 0; } } }