SUBD_Aleikin/WinFormsProject/WinFormsLibrary/NumberTextBox.cs

21 lines
399 B
C#
Raw Normal View History

2023-09-20 23:36:19 +04:00
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;
namespace WinFormsLibrary
{
public partial class NumberTextBox : UserControl
{
public NumberTextBox()
{
InitializeComponent();
}
}
}