Font Size in Popupmenu

Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #34654
    Opfinder
    Participant

    is there a way to change the fontsize in the TPopupmenu

    using OnmeasureItim and OnDrawItem

    and still have full skin support in the popupmenu

    I lost skinssupport when drawing text in OnDrawItem

    Best Regards

    Opfinder

    #46178
    Support
    Keymaster

    Hello

    For changing a menu font you can use the CustomMenuFont:TFont variable.

    This variable is declared in the sSkinMenus.pas unit and used for drawing of text in menus (if CustomMenuFont is not Nil).

    Example of using :

      CustomMenuFont := TFont.Create;

    CustomMenuFont.Name := 'Comic Sans MS';

    CustomMenuFont.Style := [fsBold];



    uses sSkinMenus;
Viewing 2 posts - 1 through 2 (of 2 total)
  • You must be logged in to reply to this topic.