Add XRC handler for wxCommandLinkButton.

Added a handler for wxCommandLinkButton class and a demo of it in the xrc sample.

Closes #12593.

git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@65856 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
Vadim Zeitlin
2010-10-20 23:11:20 +00:00
parent 528f2a25ca
commit 53cdd2c11d
20 changed files with 256 additions and 0 deletions

View File

@@ -694,6 +694,23 @@ pseudo-class (similarly to @ref xrc_wxnotebook "wxNotebook" and its
Each @c choicebookpage has exactly one non-toplevel window as its child.
@subsubsection xrc_wxcommandlinkbutton wxCommandLinkButton
The wxCommandLinkButton contains a main title-like @c label and an optional
@c note for longer description. The main @c label and the @c note can be
concatenated into a single string using a new line character between them
(notice that the @c note part can have more new lines in it).
@beginTable
@hdr3col{property, type, description}
@row3col{label, @ref overview_xrcformat_type_text,
First line of text on the button, typically the label of an action that
will be made when the button is pressed. }
@row3col{note, @ref overview_xrcformat_type_text,
Second line of text describing the action performed when the button is pressed. }
@endTable
@subsubsection xrc_wxcollapsiblepane wxCollapsiblePane
@beginTable