mirror of
https://github.com/wxWidgets/Phoenix.git
synced 2026-01-10 13:57:08 +01:00
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxPython/Phoenix/trunk@73188 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775
20 lines
630 B
Python
20 lines
630 B
Python
|
|
items = ["meat", "fish", "fruits", "beer"]
|
|
order = [3, 0, 1, 2]
|
|
|
|
dlg = wx.RearrangeDialog(None,
|
|
"You can also uncheck the items you don't like "
|
|
"at all.",
|
|
"Sort the items in order of preference",
|
|
order, items)
|
|
|
|
if dlg.ShowModal() == wx.ID_OK:
|
|
order = dlg.GetOrder()
|
|
for n in order:
|
|
if n >= 0:
|
|
wx.LogMessage("Your most preferred item is \"%s\""%n)
|
|
break
|
|
|
|
|
|
|