作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
编写以下代码
procedure TForm1.Edit1ApplyStyleLookup(Sender: TObject);
var
Obj: TFmxObject;
begin
Obj := Edit1.FindStyleResource('background');
if Obj <> nil then
ShowMessage('Obj is not nil')
else
ShowMessage('Obj is nil');
end;
XE6 中的代码运行良好,XE7 中的 Obj 为 nil。请问,这是什么原因,如何到达Obj?
如下代码,访问Obj与NIL值相同:
TMyEdit = class(TEdit)
protected
procedure ApplyStyle;override;
...
procedure TMyEdit.ApplyStyle;
var
Obj: TFmxObject;
begin
inherited;
Obj := Self.FindStyleResource('background');
...
end;
最佳答案
我在使用 C++Builder XE7 时遇到了同样的问题。我就是这样解决的。我创建了这个函数:
static Fmx::Types::TFmxObject* __fastcall FindStyle(
Fmx::Types::TFmxObject* AFmxObject, const System::UnicodeString AStyleLookup)
{
if(AFmxObject == NULL)
{
return NULL;
}
Fmx::Types::TFmxObject* Result = NULL;
const int LChildrenCount = AFmxObject->ChildrenCount;
for(int i = 0; i < LChildrenCount; ++i)
{
if(AFmxObject->Children->Items[i]->StyleName == AStyleLookup)
{
Result = AFmxObject->Children->Items[i];
break;
}
Result = FindStyle(AFmxObject->Children->Items[i], AStyleLookup);
if(Result != NULL)
{
break;
}
}
return Result;
}
只需像这样调用该函数:
#if __CODEGEARC__ < 0x0690
Fmx::Types::TFmxObject* LStyleResource = LEdit->FindStyleResource("background");
#else
Fmx::Types::TFmxObject* LStyleResource = FindStyle(LEdit, "background");
#endif
它并没有那么复杂,所以我想用 Delphi 编写它会很容易。
关于delphi - 在XE7中,TEdit.OnApplyStyleLookup不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25870188/
我是一名优秀的程序员,十分优秀!