📄 xh_sttxt.cpp
字号:
/////////////////////////////////////////////////////////////////////////////// Name: xh_sttxt.cpp// Purpose: XRC resource for wxStaticText// Author: Bob Mitchell// Created: 2000/03/21// RCS-ID: $Id: xh_sttxt.cpp,v 1.1 2004/03/13 04:01:17 hopeseekr Exp $// Copyright: (c) 2000 Bob Mitchell and Verant Interactive// Licence: wxWindows licence///////////////////////////////////////////////////////////////////////////// #if defined(__GNUG__) && !defined(NO_GCC_PRAGMA)#pragma implementation "xh_sttxt.h"#endif// For compilers that support precompilation, includes "wx.h".#include "wx/wxprec.h"#ifdef __BORLANDC__ #pragma hdrstop#endif#include "wx/xrc/xh_sttxt.h"#include "wx/stattext.h"wxStaticTextXmlHandler::wxStaticTextXmlHandler() : wxXmlResourceHandler() { XRC_ADD_STYLE(wxST_NO_AUTORESIZE); XRC_ADD_STYLE(wxALIGN_LEFT); XRC_ADD_STYLE(wxALIGN_RIGHT); XRC_ADD_STYLE(wxALIGN_CENTRE); AddWindowStyles();}wxObject *wxStaticTextXmlHandler::DoCreateResource(){ XRC_MAKE_INSTANCE(text, wxStaticText) text->Create(m_parentAsWindow, GetID(), GetText(wxT("label")), GetPosition(), GetSize(), GetStyle(), GetName()); SetupWindow(text); return text;}bool wxStaticTextXmlHandler::CanHandle(wxXmlNode *node){ return IsOfClass(node, wxT("wxStaticText"));}
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -