label.hxx
来自「基于网络编程的例子」· HXX 代码 · 共 20 行
HXX
20 行
// Label.hxx//#ifndef Label__hxx#define Label__hxx#include "Component.hxx"class Label : public Component {public: Label(char * label = "test label", int width=100, int height=20); void setup(Widget parent);private: char * my_label; int my_width; int my_height;};#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?