private void BindCombo()
        {
            List <MailType> list = MailTypeService.getMailTypes();
            MailType        m    = new MailType();

            m.Id   = 0;
            m.Type = "All Types";
            list.Add(m);

            cmb_MailType.ItemsSource = list;
        }
Esempio n. 2
0
 private void BindCombo()
 {
     cmb_mailType.ItemsSource = MailTypeService.getMailTypes();
 }