📄 pmplistbox.h
字号:
#include <paragui/pglistbox.h>#include <paragui/pglistboxitem.h>using namespace std;class PmpListBox : public PG_ListBox { public: PmpListBox(PG_Widget* parent,const PG_Rect& r = PG_Rect::null,const char* style = "ListBox"); ~PmpListBox(); void Scroll(int y); }; PmpListBox :: PmpListBox(PG_Widget* parent,const PG_Rect& r, const char* style) : PG_ListBox(parent,r,style){}PmpListBox::~PmpListBox(){}void PmpListBox::Scroll(int y){ ScrollTo(y); my_objVerticalScrollbar->SetPosition(y);}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -