我试图创建一个ListStore以便在输入字段中将其设置为完成模型。

ListStore store = new ListStore(string);


输出:
错误CS1526:意外符号)', expecting。 (CS1526)(锻炼)

在PyGTK中,操作如下:store = gtk.ListStore(str)

我是C#的新手,但在Python中使用了Gtk。如果这是一个愚蠢的问题,请原谅我:)

谢谢。

最佳答案

ListStore构造函数将列类型作为参数。您可以使用typeof运算符从其名称获取类型实例:

ListStore store = new ListStore(typeof(string));

10-07 22:16