2016-12-29 17 views
1

Я пытаюсь создать заголовок кнопки, который содержит разрыв строки:Inno кнопка Настройки заголовок с линией ломает

Button.Caption := 'Line1' + #13#10 + 'Line2'; 

Однако разрыв символов стандартной линии #13#10 не появляется, чтобы работать в этом случае, как я получение:

Line1Line2

отображается на кнопке. Каков правильный синтаксис, чтобы разбить заголовок кнопки на нескольких строках?

ответ

2

Основываясь на Newline character in caption of button (в Delphi):

function GetWindowLong(Wnd: HWnd; Index: Integer): LongInt; 
    external '[email protected] stdcall'; 
function SetWindowLong(Wnd: HWnd; Index: Integer; NewLong: LongInt): LongInt; 
    external '[email protected] stdcall'; 

const 
    GWL_STYLE = -16; 
    BS_MULTILINE = $2000; 

procedure InitializeWizard(); 
var 
    Button: TNewButton; 
begin 
    Button := TNewButton.Create(WizardForm); 
    Button.Left := ScaleX(16); 
    Button.Top := WizardForm.NextButton.Top - ScaleX(8); 
    Button.Width := WizardForm.NextButton.Width; 
    Button.Height := WizardForm.NextButton.Height + ScaleY(16); 
    Button.Parent := WizardForm; 

    SetWindowLong(Button.Handle, GWL_STYLE, 
    GetWindowLong(Button.Handle, GWL_STYLE) or BS_MULTILINE); 

    Button.Caption := 'foo' + #13#10 + 'bar'; 
end; 

Button with new line

 Смежные вопросы

  • Нет связанных вопросов^_^