Пример #1
0
        public void them(TextBox a, TextBox b, TextBox c, ComboBox d)
        {
            DictionaryData dt = new DictionaryData();

            dt.Key          = a.Text;
            dt.Meaning      = b.Text;
            dt.Explaination = c.Text;
            items.Items.Add(dt);
            GhiXML(Items, path);
            items = (DictionaryItem)DocXML(path);
            loadtoCB(d);
        }
Пример #2
0
 public DictionaryManager()
 {
     items = (DictionaryItem)DocXML(path);
 }