Esempio n. 1
0
 /// <summary>
 /// Shows the big list (FrmBigList).
 /// The list is editable if a ListChangeAcceptor is set.
 /// </summary>
 /// <returns>If the list was modified</returns>
 public BigListResult <object> ShowListEditor(Form owner)
 {
     return(FrmBigList.Show(owner, this.Core, this, FrmBigList.EShow.Default, null));
 }
Esempio n. 2
0
 /// <summary>
 /// Shows the big list (FrmBigList).
 /// </summary>
 public BigListResult <T> ShowListEditor(Form owner, FrmBigList.EShow show, object automaticAddTemplate)
 {
     return(FrmBigList.Show(owner, this.Core, this, show, automaticAddTemplate)?.Cast <T>());
 }