mirror of
https://github.com/doublecmd/doublecmd.git
synced 2026-06-21 09:58:13 +00:00
ADD: DialogAPI - DM_GETTEXT/DM_SETTEXT for TCheckBox
(cherry picked from commit 615823d2e8)
This commit is contained in:
parent
fd247eff2a
commit
7ebc7cbe36
1 changed files with 4 additions and 0 deletions
|
|
@ -415,6 +415,8 @@ begin
|
|||
FText:= TButton(Control).Caption
|
||||
else if Control is TComboBox then
|
||||
FText:= TComboBox(Control).Text
|
||||
else if Control is TCheckBox then
|
||||
FText:= TCheckBox(Control).Caption
|
||||
else if Control is TMemo then
|
||||
FText:= TMemo(Control).Text
|
||||
else if Control is TEdit then
|
||||
|
|
@ -528,6 +530,8 @@ begin
|
|||
TButton(Control).Caption:= AText
|
||||
else if Control is TComboBox then
|
||||
TComboBox(Control).Text:= AText
|
||||
else if Control is TCheckBox then
|
||||
TCheckBox(Control).Caption:= AText
|
||||
else if Control is TMemo then
|
||||
TMemo(Control).Text:= AText
|
||||
else if Control is TEdit then
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue