09-03-2012 // http://pagead2.googlesyndication.com/pagead/show_ads.js WPF doesn’t have a straightforward Timer control that you can drag and drop from the Toolbox. However, ther’s still a straightforward easy way to implement this. You can use the provided System.Windows.Threading.DispatcherTimer class for this It’s easy as abc. Steps: 1 Create an instance System.Windows.Threading.DispatcherTimer TimerName = new System.Windows.Threading.DispatcherTimer() ; 2 CreateContinue reading “Using DispatcherTimer To Create A Timer In WPF”
Monthly Archives: March 2012
Using TextEditSettings.DisplayFormat To Format Your Data In DevExpress DataGrid
07-03-2012 // http://pagead2.googlesyndication.com/pagead/show_ads.js Devexpress doesn’t provide much information about how you can use this to format your data when you use DevExpress DataGrid. I have a code to create and format a devexpress datagrid dynamically at run time. I had to automatically format date to match the British system if the current data is ofContinue reading “Using TextEditSettings.DisplayFormat To Format Your Data In DevExpress DataGrid”