I see something similar here.
I figured I'd post my situation since it's a different situation (as I'm not trying to add my code into the list). Also, I didn't try to use a markup numbered list, I just numbered it myself.
For example:
- added a TRibbonCombobox on the ribbon bar
added an event handler
procedure TfrmRibbonDemo.RibbonComboBox1Change(Sender: TObject); begin if RibbonComboBox1.Text='Luna' then Ribbon1.Style:=RibbonLunaStyle else Ribbon1.Style:=RibbonSilverStyle; end;
On the other hand, if a list doesn't immediately precede it:
procedure TfrmRibbonDemo.RibbonComboBox1Change(Sender: TObject);
begin
if RibbonComboBox1.Text='Luna' then
Ribbon1.Style:=RibbonLunaStyle
else
Ribbon1.Style:=RibbonSilverStyle;
end;