mirror of
https://github.com/par274/sharpemu.git
synced 2026-08-01 23:49:44 +08:00
12 lines
327 B
C#
12 lines
327 B
C#
// Copyright (C) 2026 SharpEmu Emulator Project
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
using Avalonia.Controls;
|
|
|
|
namespace SharpEmu.GUI.Controls.Settings;
|
|
|
|
/// <summary>
|
|
/// Numeric input whose native spinner is presented as a separate split button
|
|
/// </summary>
|
|
public sealed class SplitNumericUpDown : NumericUpDown;
|