add control
C#
2
Posts
2
Posters
0
Views
1
Watching
-
i want add control when program run then apply event for it? please help
-
i want add control when program run then apply event for it? please help
Like this:
TextBox box= new TextBox();
box.TextChanged += new (TextChangedHandler);
this.Controls.Add(box);Giorgi Dalakishvili #region signature My Articles Asynchronous Registry Notification Using Strongly-typed WMI Classes in .NET [^] My blog #endregion