Search
Code Better
-
Recent Posts
Categories
Tag Archives: IDE
Adding Templates to Visual Studio Express 2010
You’ve probably read about Jeff Wilcox’s unit testing framework for Silverlight. It depends on a couple of templates being installed (one class, and one project). How do you install templates in Visual Studio Express versions? First, browse to %My Documents%\Visual … Continue reading
Using the TabControl and TabPages
C# has a TabControl control. It allows you to create a tabbed interface, where content changes with each tab. The IDE really creates a TabPage instance for each tab that you add, and displays the right content at the right time — simply click on tabs in your IDE, drag and drop controls into the content area, and you’re ready to go! Continue reading