Hi there,
I am trying to make a component inherited from TTMSFMXCalendar, It is needed in order to adapt the component behavior to my MVP framework.
However it does not show anything. I have made from others TMS components correctly.
I suppose it is related to the Style, I have tried this one, but did not work.
function TNaharFMXCalendar.GetDefaultStyleLookupName: string;
begin
Result := ClassParent.ClassName + 'style';
Delete(Result, 1, 1);
end;
and this one:
function TNaharFMXCalendar.GetDefaultStyleLookupName: string;
begin
result := 'CalendarStyle';
end;
worked better, but it was not a complete calendar, the numbers did not show up.
I am inheriting from TTMSFMXCalendar.
What is necessary to make it show correctly?
Thanks!