数字Eto网格单元格
本文关键字:单元格 网格 Eto 数字 | 更新日期: 2023-09-27 18:16:09
如何在Eto表单GridView中创建一个数字列(理想情况下是整数)?
下面是两个字符串列
的代码stats.Columns.Add(new GridColumn
{
DataCell = new TextBoxCell { Binding = Binding.Property<RulesDocAdapter, string>(r => r.Name) },
HeaderText = "Name"
});
stats.Columns.Add(new GridColumn
{
DataCell = new TextBoxCell { Binding = Binding.Property<RulesDocAdapter, string>(r => r.Abbreviation) },
HeaderText = "Abbreviation"
});
要使用不同的列,可以使用属性绑定上的convert()扩展将整数属性转换为字符串,如下所示:
Binding.Property((RulesDocAdapter r) => r.IntProperty).Convert(v => v.ToString(), s => { int i = 0; return int.TryParse(s, out i) ? i : -1; })