private void simpleAction1_Execute(object sender, SimpleActionExecuteEventArgs e)
{
var listView = View as ListView;
if (listView == null) return;var oSpace = this.Application.CreateObjectSpace();for (int i = 0; i < 100; i++)
{
var domainObject1 = oSpace.CreateObject();
domainObject1.PersistentProperty = string.Format("{0}-{1}", DateTime.Now, i);
}oSpace.CommitChanges();
listView.CollectionSource.Reload();
//Refresh
View.ObjectSpace.Refresh();
}
Please, inform us if this solution does not suit you.