You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 1, 2024. It is now read-only.
var maximumContainer = new ValueViewContainer<Stepper>(Test.Stepper.Maximum, new Stepper { Maximum = 10 }, "Value", value => value.ToString());
var minimumContainer = new ValueViewContainer<Stepper>(Test.Stepper.Minimum, new Stepper { Minimum = 2 }, "Value", value => value.ToString());
var incrememtContainer = new ValueViewContainer<Stepper>(Test.Stepper.Increment, new Stepper { Maximum = 20, Minimum = 10, Increment = 2 }, "Value", value => value.ToString());