Creating Simple Text Notifications in Windows 8 with C#
Windows 8 introduces a much improved notification system that allows your applications to notify users in a variety of ways, from local application notifications to push notifications and badges on...
View ArticleUsing Extension Methods in a ASP.NET MVC Razor View
, Extension methods were added in C# 3.0 and are a great way to add commonly used functionality to your projects in an object oriented way that cuts down on repetitive code. While extension methods are...
View ArticleCustomize Title Bar Colors In Windows 10 XAML Apps
Windows 10 apps can have customized title bar colors (for example, the Mail and Calendar apps) instead of the default white (or accent color in an upcoming Windows 10 update). Changing the title bar...
View ArticleCreating A Simple DisplayFor Template In ASP.NET MVC
When building web applications, the DisplayFor and EditorFor HTML helpers are extremely useful to quickly build pages from your model. However, sometimes you would like a bit more control over their...
View Article