Book Image

MCTS: Microsoft Silverlight 4 Development (70-506) Certification Guide

By : Johnny Tordgeman
Book Image

MCTS: Microsoft Silverlight 4 Development (70-506) Certification Guide

By: Johnny Tordgeman

Overview of this book

Microsoft Silverlight is a powerful development platform for creating engaging, interactive applications for many screens across the Web, desktop, and mobile devices. Silverlight is also a great (and growing) Line-Of-Business platform and is increasingly being used to build data-driven business applications. Silverlight is based on familiar .NET languages such as C# which enables existing .NET developers to get started developing rich internet applications almost immediately. "MCTS: Microsoft Silverlight 4 Development (70-506) Certification Guide" will show you how to prepare for and pass the (70-506): TS: Microsoft Silverlight 4 Development exam.Packed with practical examples and Q&As, MCTS: Microsoft Silverlight 4 Development (70-506) Certification Guide starts by showing you how to lay out a user interface, enhance the user interface, implement application logic, work with data and interact with a host platform amongst others.
Table of Contents (15 chapters)
MCTS: Microsoft Silverlight 4 Development (70-506) Certification Guide
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface

Using core and content controls


Silverlight's control library is constantly growing. Some controls are living in the assemblies and included in the Silverlight plugin install by default. These controls are usually referred to as the core controls. These core controls include all-time favorites such as TextBox, Button, CheckBox, and so on. But the power of Silverlight doesn't come from its core components alone; you can always reference other assemblies that have other controls living in them and add them to your project. When you add such "outside" control to your page, you need to reference its namespace in your page.

Using core controls

Among Silverlight's core controls, there are controls we already know (and love) from other frameworks. Let's discuss the usage and properties of those controls. What is the first control that comes to your mind when you're thinking about text input? Most developers will answer—the TextBox control.

TextBox

The well-known TextBox control has one purpose;...