From 1df675da5aea85ac3f5942753d100e02e822c180 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=D0=9B=D0=B5=D0=BE=D0=BD=D0=B8=D0=B4=20=D0=9C=D0=B0=D0=BB?= =?UTF-8?q?=D0=B0=D1=84=D0=B5=D0=B5=D0=B2?= Date: Thu, 5 Sep 2024 21:53:15 +0400 Subject: [PATCH] fix --- Cop_25/Controls/CustomNumberBox.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Cop_25/Controls/CustomNumberBox.cs b/Cop_25/Controls/CustomNumberBox.cs index eeedaf6..5930e56 100644 --- a/Cop_25/Controls/CustomNumberBox.cs +++ b/Cop_25/Controls/CustomNumberBox.cs @@ -31,7 +31,7 @@ namespace Controls /// /// Введенное значение /// - public string? TextBoxValue + public string? TextBoxNumber { get { @@ -88,7 +88,7 @@ namespace Controls /// /// Смена значения /// - private void CustomNumberBox_SelectedValueChanged(object sender, EventArgs e) + private void CustomNumberBox_NumberChanged(object sender, EventArgs e) { _onValueChangedEvent?.Invoke(sender, e); }