-
-
Notifications
You must be signed in to change notification settings - Fork 965
Expand file tree
/
Copy pathNumericUpDownPage.xaml.cs
More file actions
24 lines (19 loc) · 808 Bytes
/
NumericUpDownPage.xaml.cs
File metadata and controls
24 lines (19 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// This Source Code Form is subject to the terms of the MIT License.
// If a copy of the MIT was not distributed with this file, You can obtain one at https://opensource.org/licenses/MIT.
// Copyright (C) Leszek Pomianowski and WPF UI Contributors.
// All Rights Reserved.
using Wpf.Ui.Controls;
using Wpf.Ui.Gallery.ControlsLookup;
using Wpf.Ui.Gallery.ViewModels.Pages.BasicInput;
namespace Wpf.Ui.Gallery.Views.Pages.BasicInput;
[GalleryPage("NumericUpDown control", SymbolRegular.NumberSymbol16)]
public partial class NumericUpDownPage : INavigableView<NumericUpDownViewModel>
{
public NumericUpDownViewModel ViewModel { get; }
public NumericUpDownPage(NumericUpDownViewModel viewModel)
{
ViewModel = viewModel;
DataContext = this;
InitializeComponent();
}
}