#ifndef UI_CORE_HBOX_H_ #define UI_CORE_HBOX_H_ #pragma once namespace ui { class UILIB_API HLayout : public Layout { public: HLayout(); /// 重写父类方法,提供个性化功能,请参考父类声明 virtual CSize ArrangeChild(const std::vector& items, UiRect rc) override; virtual CSize AjustSizeByChild(const std::vector& items, CSize szAvailable) override; }; class UILIB_API HBox : public Box { public: HBox(); }; } #endif // UI_CORE_HBOX_H_