From 0eb92d6472bc76a5f3572cbe3feadbb456189b0e Mon Sep 17 00:00:00 2001 From: Tracy Pearson Date: Sun, 31 Mar 2024 01:13:03 -0400 Subject: [PATCH] Removed debug output --- MVPLearning/BaseLibrary/BaseTextBox.cs | 1 - 1 file changed, 1 deletion(-) diff --git a/MVPLearning/BaseLibrary/BaseTextBox.cs b/MVPLearning/BaseLibrary/BaseTextBox.cs index 6137ee8..5a7de1f 100644 --- a/MVPLearning/BaseLibrary/BaseTextBox.cs +++ b/MVPLearning/BaseLibrary/BaseTextBox.cs @@ -19,7 +19,6 @@ namespace MVPLearning.BaseLibrary var newBinding = new Binding(nameof(Text), datasource, dataproperty, false); DataBindings.Add(newBinding); - System.Diagnostics.Debug.WriteLine($"Binding count for {Name}.{nameof(Text)} is {DataBindings.Count}"); } protected override void OnGotFocus(EventArgs e)