Delphi: sliding (animated) panel

前端 未结 5 1311
谎友^
谎友^ 2020-12-04 20:41

Is there a sliding (animated) panel component for Delphi?

For instance it can be found in Raize Components (a left panel with a \"Hot Spot\" or hide/show button). <

5条回答
  •  旧巷少年郎
    2020-12-04 21:12

    Try NLDSideBar, a container component written by myself that is collapsable and aligned along the left or right side of its parent.

    Interface:

    property Align: TSideBarAlign default alLeft;
    property AutoHide: Boolean default False;
    property Hint: String;
    property MinWidth: Integer default DefWidth;
    property OnAutoHideChanged: TNotifyEvent;
    property OnHide: TNotifyEvent;
    property PinButtonDownHint: String;
    property PinButtonUpHint: String;
    property PinButtonVisible: Boolean default True;
    property Resizable: Boolean default True;
    property SideButtonWidth: Integer default DefSideButtonWidth;
    property Caption;
    property Color default clBtnFace;
    property Font;
    property ParentColor default False;
    property ParentFont;
    property ParentShowHint;
    property PopupMenu;
    property TabOrder;
    property TabStop;
    

    NLDSideBar

    Or maybe this older version which is animated. Free to use, free to modify.

    Sorry for being self-promotive, but I think it's an answer to the question.

提交回复
热议问题