我正在尝试创建一个ListStore,以便在输入字段中将其设置为完成模型。
ListStore store = new ListStore(string);
输出:
错误CS1526:意外符号)', expecting
。' (CS1526)(运动)
在PyGTK中,它完成为:store = gtk.ListStore(str)
我是C#的新手,但是在Python中使用了Gtk。如果这是一个愚蠢的问题,请原谅我:)
感谢。
答案 0 :(得分:3)
ListStore
构造函数将列类型作为参数。您可以使用typeof运算符从其名称中获取类型实例:
ListStore store = new ListStore(typeof(string));