зеркало из https://github.com/DeGsoft/maui-linux.git
Added Stepper.Impl.cs (#693)
This commit is contained in:
Родитель
18e0f4ebbc
Коммит
bfd9aa9dc4
|
@ -0,0 +1,7 @@
|
|||
namespace Microsoft.Maui.Controls
|
||||
{
|
||||
public partial class Stepper : IStepper
|
||||
{
|
||||
|
||||
}
|
||||
}
|
|
@ -1,10 +1,9 @@
|
|||
using System;
|
||||
using System.ComponentModel;
|
||||
using Microsoft.Maui.Controls.Internals;
|
||||
|
||||
namespace Microsoft.Maui.Controls
|
||||
{
|
||||
public class Stepper : View, IElementConfiguration<Stepper>, IStepper
|
||||
public partial class Stepper : View, IElementConfiguration<Stepper>, IStepper
|
||||
{
|
||||
public static readonly BindableProperty MaximumProperty = BindableProperty.Create(nameof(Maximum), typeof(double), typeof(Stepper), 100.0,
|
||||
validateValue: (bindable, value) => (double)value > ((Stepper)bindable).Minimum,
|
||||
|
|
Загрузка…
Ссылка в новой задаче