From c06691432d0ab3ec1f56bbf67b27d01c77804740 Mon Sep 17 00:00:00 2001 From: KirillFirsof <117719052+KirillFirsof@users.noreply.github.com> Date: Thu, 9 Nov 2023 21:54:25 +0400 Subject: [PATCH] =?UTF-8?q?=D0=BA=D0=BE=D0=BC=D0=BC=D0=B8=D1=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../RPP_FirstLaba_Tractor/FormTractorCollection.cs | 3 +++ 1 file changed, 3 insertions(+) diff --git a/RPP_FirstLaba_Tractor/RPP_FirstLaba_Tractor/FormTractorCollection.cs b/RPP_FirstLaba_Tractor/RPP_FirstLaba_Tractor/FormTractorCollection.cs index 2c883d3..e8c12e9 100644 --- a/RPP_FirstLaba_Tractor/RPP_FirstLaba_Tractor/FormTractorCollection.cs +++ b/RPP_FirstLaba_Tractor/RPP_FirstLaba_Tractor/FormTractorCollection.cs @@ -243,6 +243,7 @@ namespace ProjectTractor this.ButtonDelObject.TabIndex = 3; this.ButtonDelObject.Text = "Удалить набор"; this.ButtonDelObject.UseVisualStyleBackColor = true; + this.ButtonDelObject.Click += new System.EventHandler(this.ButtonDelObject_Click); // // listBoxStorages // @@ -261,6 +262,7 @@ namespace ProjectTractor this.ButtonAddObject.TabIndex = 1; this.ButtonAddObject.Text = "Добавить набор"; this.ButtonAddObject.UseVisualStyleBackColor = true; + this.ButtonAddObject.Click += new System.EventHandler(this.ButtonAddObject_Click); // // textBoxStorageName // @@ -337,5 +339,6 @@ namespace ProjectTractor private MaskedTextBox textBoxStorageName; private PictureBox pictureBoxCollection; + } }