Last active
July 6, 2021 10:39
-
-
Save Mahno74/bb4206c48c91f6cc38474e4317e03d1d to your computer and use it in GitHub Desktop.
Доступ к "контролу" по его имени
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
//Если находится на форме | |
(Controls["textBox1"] as TextBox).Text = "newText"; | |
//если находится в груп боксе | |
groupBox1.Controls["comboBox2"] as ComboBox).Text = "newText"; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment