Exemplo n.º 1
0
        protected string GetDisplayText(object value)
        {
            DataFormListEntry item = new DataFormListEntry();

            item = (DataFormListEntry)value;

            return(string.Format("{0}, {1}", item.KeyName, item.KeyValue));
        }
Exemplo n.º 2
0
 public void Add(DataFormListEntry entry)
 {
     this.List.Add(entry);
 }
Exemplo n.º 3
0
 public void Remove(DataFormListEntry entry)
 {
     this.List.Remove(entry);
 }