Example #1
0
        void CleanView(bool refreshList)
        {
            txtName.Text  = "";
            txtTel.Text   = "";
            txtAddr.Text  = "";
            dtBirth.Value = DateTime.Now;

            if (refreshList)
            {
                lstNames.Items.Clear();
                string[] names = _cache.GetKeys();
                foreach (string name in names)
                {
                    lstNames.Items.Add(name);
                }
            }
        }