Hi RMA,
the rs.PropertyListBox i.e. Rhino.UI.Dialogs.ShowPropertyListBox does not like utf-8 characters like Ä Ö Ü and so on. Here a python example:
# -*- coding: utf-8 -*-
import Rhino
import rhinoscriptsyntax as rs
def test():
keys = ["key1","key2"]
values = ["one","über"]
results = rs.PropertyListBox(keys, values, "Edit Values")
if results:
print results
test()
Is there a way to work around the problem?
Thanks,
Jess