2 Day Workshop on WPF for Faculty

Higher Education Commissions (HEC) and Microsoft Innovation Center (MIC) recently organized a 2 day workshop on Windows Presentation Foundation (WPF) for faculty and I was invited as trainer. The overall agenda of the 2 day workshop was to introduce Microsoft’s platform for building Windows client applications. The audience comprises of Read more…

Binding Enum to ComboBox

Hi, Whether it’s Windows Forms or Windows Presentation Foundation While working with ComboBox, we usually want to bind any list as ComboBox Items. For example, //In windows forms string[] names = { “Microsoft”, “IBM”, “Apple” }; cmbNames.DataSource = names;  //cmbNames is comboBox ID or //In windows presentation foundation string[] names Read more…