add support for defining list control columns in XRC too (and correct a few things in previously added list items support)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@60738 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
This commit is contained in:
@@ -584,8 +584,17 @@
|
||||
<border>5</border>
|
||||
<object class="wxListCtrl" name="controls_listctrl">
|
||||
<size>220,160</size>
|
||||
<style>wxLC_REPORT</style>
|
||||
<!-- this control is filled in from the code -->
|
||||
<style>wxLC_REPORT|wxBORDER_SIMPLE</style>
|
||||
<object class="listcol">
|
||||
<text>Name</text>
|
||||
<width>150</width>
|
||||
</object>
|
||||
<object class="listcol">
|
||||
<text>Weight</text>
|
||||
<align>wxLIST_FORMAT_RIGHT</align>
|
||||
<width>50</width>
|
||||
</object>
|
||||
<!-- the items are added from the code -->
|
||||
</object>
|
||||
</object>
|
||||
<object class="sizeritem">
|
||||
@@ -593,7 +602,7 @@
|
||||
<border>5</border>
|
||||
<object class="wxListCtrl" name="controls_listctrl2">
|
||||
<size>220,160</size>
|
||||
<style>wxLC_ICON</style>
|
||||
<style>wxLC_ICON|wxBORDER_SIMPLE</style>
|
||||
<object class="listitem">
|
||||
<text>Information</text>
|
||||
<bitmap stock_id="wxART_INFORMATION"/>
|
||||
@@ -609,7 +618,7 @@
|
||||
<border>5</border>
|
||||
<object class="wxListCtrl" name="controls_listctrl3">
|
||||
<size>220,160</size>
|
||||
<style>wxLC_SMALL_ICON</style>
|
||||
<style>wxLC_SMALL_ICON|wxBORDER_SIMPLE</style>
|
||||
<imagelist-small>
|
||||
<size>20,20</size>
|
||||
<bitmap stock_id="wxART_INFORMATION"/>
|
||||
|
Reference in New Issue
Block a user