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