Update to avalonia 11 preview
This commit is contained in:
parent
639ad72fb4
commit
f73227f02f
4 changed files with 18 additions and 17 deletions
|
|
@ -992,9 +992,9 @@ namespace Observatory.UI.Views
|
|||
NumericUpDown numericUpDown = new() { Value = intSetting, AllowSpin = true };
|
||||
if (bounds != null)
|
||||
{
|
||||
numericUpDown.Minimum = bounds.Minimum;
|
||||
numericUpDown.Maximum = bounds.Maximum;
|
||||
numericUpDown.Increment = bounds.Increment;
|
||||
numericUpDown.Minimum = (decimal)bounds.Minimum;
|
||||
numericUpDown.Maximum = (decimal)bounds.Maximum;
|
||||
numericUpDown.Increment = (decimal)bounds.Increment;
|
||||
}
|
||||
numericUpDown.ValueChanged += (object sender, NumericUpDownValueChangedEventArgs e) =>
|
||||
{
|
||||
|
|
|
|||
Loading…
Reference in a new issue