Пример #1
0
        public DataFormControlDesignProperty()
        {
            ListEntry entry1 = new ListEntry();

            entry1.Key          = 1;
            entry1.Value        = "A new dawn";
            entry1.Description  = "A new book by author J. Jennings";
            entry1.CategoryName = "Books";
            this.entries.Add(entry1);

            ListEntry entry2 = new ListEntry();

            entry2.Key          = 2;
            entry2.Value        = "You Magazine";
            entry2.Description  = "A new magazine";
            entry2.CategoryName = "Magazines";
            this.entries.Add(entry2);

            ents[0] = entry1;
            ents[1] = entry2;
        }
Пример #2
0
 // Collection methods
 public void Add(ListEntry entry)
 {
     this.List.Add(entry);
 }
Пример #3
0
 public void Remove(ListEntry entry)
 {
     this.List.Remove(entry);
 }