![]() |
#4 |
NavAx
|
В метод Dialog добавьте:
X++: FormBuildDesign buildDesign; FormBuildCommandButtonControl button; ; ........... buildDesign = dialog.formBuildDesign(); if (buildDesign) { button = buildDesign.control('OkButton'); if (button) { button.text("Удалить"); } button = buildDesign.control('CancelButton'); if (button) { button.text("Обновить"); } } return dialog; |
|