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