0
我試圖執行循環操作來編輯具有多個控件上的特定值的相同屬性。動態添加成員來操作 - VB.NET
喜歡的東西:
Dim action as action
action.add(control1)
action.add(control2)
action.add(control3)
action.run
那麼行動將這樣執行的東西:
For each ctrl as control in action.controls
ctrl.text = ctrl.text & "another value"
Next