Articles Archive for May 2009
Silverlight »
Silverlight Input Controls:
For any UI the Input Controls and very essential and important. Lets discuss some input controls:
Button and TextBox– Buttons are simple button to submit, With the Content property you can assign the text it to check the following code:
<UserControl x:Class=”myFirstSilverlightApp.TestControl”
xmlns=”http://schemas.microsoft.com/winfx/2006/xaml/presentation”
xmlns:x=”http://schemas.microsoft.com/winfx/2006/xaml”
Width=”650″ Height=”300″>
<Grid x:Name=”LayoutRoot” Background=”White”>
<Button x:Name=”btnSubmit” Click=”btnSubmit_Click”
Content=”Submit” Height=”30″ Width=”75″
…
