gpt4 book ai didi

delphi - 访问FMX样式对象的事件处理程序

转载 作者:行者123 更新时间:2023-12-03 19:30:03 25 4
gpt4 key购买 nike

如何访问样式按钮的事件处理程序。例如,这有效:

ListBoxItem.StylesData['detail2.text'] := date;


但不是这个:

ListBoxItem.StylesData['downloadbutton.OnClick'] := LoadFileContent; //says not enough parameters. So when I put in 'LoadFileContent(nil) then I get an imcompatible types error message

最佳答案

应该这样做:

uses
//....
System.Rtti;
//....
ListBoxItem.StylesData['downloadbutton.OnClick'] := TValue.From<TNotifyEvent>(LoadFileContent);

关于delphi - 访问FMX样式对象的事件处理程序,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28440806/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com