<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>code for asp.net &#187; Controls</title>
	<atom:link href="http://www.codeforasp.net/category/silverlight/controls/feed" rel="self" type="application/rss+xml" />
	<link>http://www.codeforasp.net</link>
	<description>More about asp.net ajax silverlight MVC</description>
	<lastBuildDate>Tue, 02 Mar 2010 10:17:59 +0000</lastBuildDate>
	
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
			<item>
		<title>Silverlight Treeview Control</title>
		<link>http://www.codeforasp.net/silverlight-treeview-control.html</link>
		<comments>http://www.codeforasp.net/silverlight-treeview-control.html#comments</comments>
		<pubDate>Wed, 04 Nov 2009 05:52:58 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Controls]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[ContentControl]]></category>
		<category><![CDATA[HyperlinkButton]]></category>
		<category><![CDATA[IsSelected]]></category>
		<category><![CDATA[silverlight treeview]]></category>
		<category><![CDATA[treeview]]></category>
		<category><![CDATA[treeviewItem]]></category>

		<guid isPermaLink="false">http://www.codeforasp.net/?p=494</guid>
		<description><![CDATA[Treeview control is used to display hierarchical data in tree structure. It contain parent and child nodes with collapse and expand.
 
To use silverlight control toolkit first add a reference to the 
Microsoft.Windows.Controls.dll.
xmlns:controls=&#8221;clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Toolkit&#8221;
 
 
Step1: Open Page.xaml control in Silverlight application
&#60;UserControl x:Class=&#8221;AddingXAML.Page&#8221;
xmlns=&#8221;http://schemas.microsoft.com/winfx/2006/xaml/presentation&#8221;
xmlns:x=&#8221;http://schemas.microsoft.com/winfx/2006/xaml&#8221;
Width=&#8221;400&#8243; Height=&#8221;300&#8243;&#62;
&#60;Grid x:Name=&#8221;LayoutRoot&#8221; Background=&#8221;White&#8221;&#62;
&#60;/Grid&#62;
&#60;/UserControl&#62;
Step2: Drag Treeview Control it generates silverlight toolkit namespace and treeview [...]]]></description>
		<wfw:commentRss>http://www.codeforasp.net/silverlight-treeview-control.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight ComboBox</title>
		<link>http://www.codeforasp.net/silverlight-combobox.html</link>
		<comments>http://www.codeforasp.net/silverlight-combobox.html#comments</comments>
		<pubDate>Tue, 03 Nov 2009 10:27:09 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Controls]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[ComboBox]]></category>
		<category><![CDATA[ComboBox SelectedItem]]></category>
		<category><![CDATA[ComboBox1_SelectionChanged]]></category>
		<category><![CDATA[IsSelected]]></category>
		<category><![CDATA[ItemSource]]></category>
		<category><![CDATA[Selected Value]]></category>

		<guid isPermaLink="false">http://www.codeforasp.net/?p=491</guid>
		<description><![CDATA[Silverlight comboBox is an xaml control. Its Syntax looks like in Xaml
&#60;ComboBox&#62;&#60;/ComboBox&#62;
Margin, Width and Height properties will adjust the controls width and height.
Margin property will adjust the control location of the parent user control.
X:Name is the property to the comboBox represent the ID of the control
Vertical and Horizontal alignment properties are used to set alignment [...]]]></description>
		<wfw:commentRss>http://www.codeforasp.net/silverlight-combobox.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Add one XAML file to another XAML file in Silverlight</title>
		<link>http://www.codeforasp.net/how-to-add-one-xaml-file-to-another-xaml-file-in-silverlight.html</link>
		<comments>http://www.codeforasp.net/how-to-add-one-xaml-file-to-another-xaml-file-in-silverlight.html#comments</comments>
		<pubDate>Mon, 02 Nov 2009 10:55:42 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Controls]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[clr-namespace]]></category>
		<category><![CDATA[Page.xaml]]></category>
		<category><![CDATA[xaml]]></category>
		<category><![CDATA[xmlns]]></category>

		<guid isPermaLink="false">http://www.codeforasp.net/?p=484</guid>
		<description><![CDATA[In above Figure Silverlight Control name is ExpanderControl.
ExplanderControl contain Themes folder with two xaml files
Generic.xaml
Test.xaml
And By Default it  contain Page.xaml file
Now we are going to open one xaml file in another xaml file i.e generic.xaml file and Test.xaml file will open in Page.xaml file.
Generic.xaml (In themes Folder) file contain below code
&#60;UserControl x:Class=&#8221;ExpanderControl.generic&#8221;
xmlns=&#8221;http://schemas.microsoft.com/winfx/2006/xaml/presentation&#8221;
xmlns:x=&#8221;http://schemas.microsoft.com/winfx/2006/xaml&#8221;
Width=&#8221;200&#8243; Height=&#8221;200&#8243;&#62;
&#60;Grid x:Name=&#8221;LayoutRoot&#8221; Background=&#8221;White&#8221;&#62;
&#60;Ellipse [...]]]></description>
		<wfw:commentRss>http://www.codeforasp.net/how-to-add-one-xaml-file-to-another-xaml-file-in-silverlight.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>multiple silverlight xaml controls in one aspx page</title>
		<link>http://www.codeforasp.net/multiple-silverlight-xaml-controls-in-one-aspx-page.html</link>
		<comments>http://www.codeforasp.net/multiple-silverlight-xaml-controls-in-one-aspx-page.html#comments</comments>
		<pubDate>Thu, 15 Oct 2009 04:48:55 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Controls]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[multiple xaml file in a single Silverlight application]]></category>
		<category><![CDATA[multiple xaml pages]]></category>
		<category><![CDATA[multiple xamp pages in one aspx page]]></category>
		<category><![CDATA[silverlight xaml controls]]></category>
		<category><![CDATA[silverlight xaml tutorial]]></category>

		<guid isPermaLink="false">http://www.codeforasp.net/?p=309</guid>
		<description><![CDATA[XAML page contains one or more elements that control the layout and
behavior of the page.You arrange these elements hierarchically in a
tree.
System.Windows.Application derived class named App with the
associated App.xaml and App.xaml.cs files; as well as a
System.Windows.Controls.UserControl derived class called Page with
the associated Page.xaml and Page.xaml.cs files.
The App class takes care of the initialization and basically you
assign [...]]]></description>
		<wfw:commentRss>http://www.codeforasp.net/multiple-silverlight-xaml-controls-in-one-aspx-page.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight TimeUpDown,TimePicker and TimePicker &amp; RangeTimePickerPopup</title>
		<link>http://www.codeforasp.net/silverlight-timeupdowntimepicker-and-timepicker-rangetimepickerpopup.html</link>
		<comments>http://www.codeforasp.net/silverlight-timeupdowntimepicker-and-timepicker-rangetimepickerpopup.html#comments</comments>
		<pubDate>Thu, 15 Oct 2009 04:39:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Controls]]></category>
		<category><![CDATA[RangeTimePickerPopup]]></category>
		<category><![CDATA[Silverlight RangeTimePickerPopup]]></category>
		<category><![CDATA[Silverlight Time]]></category>
		<category><![CDATA[silverlight time picker]]></category>
		<category><![CDATA[Silverlight TimePicker]]></category>

		<guid isPermaLink="false">http://www.codeforasp.net/?p=306</guid>
		<description><![CDATA[TimeUpDown
TimeUpDown is a silverlight control. It uses textbox to allow user to input time and time changes by clicking up and down
spinners.
It allows you to write 1123 and it converts to 11:23 Or 8a and converts to 8:00 AM.
properties:
set “value” will display default time as you mentioned in TimeUpDown control i.e 11:00 AM
“Culture” values can [...]]]></description>
		<wfw:commentRss>http://www.codeforasp.net/silverlight-timeupdowntimepicker-and-timepicker-rangetimepickerpopup.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight Accordion Panel</title>
		<link>http://www.codeforasp.net/silverlight-accordion-panel.html</link>
		<comments>http://www.codeforasp.net/silverlight-accordion-panel.html#comments</comments>
		<pubDate>Thu, 15 Oct 2009 04:25:06 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Controls]]></category>
		<category><![CDATA[Silverlight]]></category>
		<category><![CDATA[Accordion]]></category>
		<category><![CDATA[HyperlinkButton in Silverlight]]></category>
		<category><![CDATA[linkbutton in Silverlight]]></category>
		<category><![CDATA[Silverlight Accordion]]></category>
		<category><![CDATA[Silverlight linkbutton]]></category>

		<guid isPermaLink="false">http://www.codeforasp.net/?p=302</guid>
		<description><![CDATA[Accordion in Silverlight
Silverlight Accordian control is same as Ajax Accordian control. The functionality of this control is to expand and collapse the content within the accordian control. The accordion control is a flexible container that consists of a series of collapsible panels, made up of the AccordionItem control.  The AccordionItem control contain header and content [...]]]></description>
		<wfw:commentRss>http://www.codeforasp.net/silverlight-accordion-panel.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight Stackpanel</title>
		<link>http://www.codeforasp.net/silverlight-stackpanel.html</link>
		<comments>http://www.codeforasp.net/silverlight-stackpanel.html#comments</comments>
		<pubDate>Wed, 14 Oct 2009 11:40:35 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Controls]]></category>
		<category><![CDATA[silverlight stackpanel children]]></category>
		<category><![CDATA[silverlight stackpanel horizontal]]></category>
		<category><![CDATA[silverlight stackpanel margin]]></category>
		<category><![CDATA[silverlight stackpanel orientation]]></category>
		<category><![CDATA[silverlight stackpanel style]]></category>

		<guid isPermaLink="false">http://www.codeforasp.net/?p=299</guid>
		<description><![CDATA[StackPanel is one of the silverlight control. It enables layout of the silverlight panel elements. Stack Panel will arrange other control of the silverlight in horizontal and vertical direction. Orientation property will declare the direction of the stack Panel child controls. By Default, Orientation property is vertical.
Orientation =”Horizontal”
Orientation = “Vertical”
Example:


&#60;StackPanel Margin=”10″  Orientation=”Horizontal” &#62;
&#60;Ellipse Fill=”Purple” Width=”50″ [...]]]></description>
		<wfw:commentRss>http://www.codeforasp.net/silverlight-stackpanel.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Silverlight Grid Layout</title>
		<link>http://www.codeforasp.net/silverlight-grid-layout.html</link>
		<comments>http://www.codeforasp.net/silverlight-grid-layout.html#comments</comments>
		<pubDate>Wed, 14 Oct 2009 11:20:15 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Controls]]></category>
		<category><![CDATA[alignment in Silverlight Grid.row]]></category>
		<category><![CDATA[ColumnDefination]]></category>
		<category><![CDATA[grid layout ShowGridLines]]></category>
		<category><![CDATA[RowDefinition]]></category>
		<category><![CDATA[silverlight grid]]></category>
		<category><![CDATA[silverlight grid layout]]></category>
		<category><![CDATA[Silverlight margin property]]></category>

		<guid isPermaLink="false">http://www.codeforasp.net/?p=292</guid>
		<description><![CDATA[The grid is a layout control is a container of other silverlight controls. Grid acts like Html table, it places other silverlight controls like Textbox, Checkbox, and Button …
I am going to create 2 rows and 6 columns using Grid layout control
&#60;UserControl xmlns:controls=”clr-namespace:System.Windows.Controls;assembly=System.Windows.Controls.Toolkit”  x:Class=”ExpanderControl.grid”
xmlns=”http://schemas.microsoft.com/winfx/2006/xaml/presentation”
xmlns:x=”http://schemas.microsoft.com/winfx/2006/xaml”
Width=”400″ Height=”400″&#62;
&#60;Grid x:Name=”LayoutRoot” Background=”White” ShowGridLines=”True”  &#62;
&#60;Grid.RowDefinitions&#62;
&#60;RowDefinition Height=”30″&#62;&#60;/RowDefinition&#62;
&#60;RowDefinition Height=”30″&#62;&#60;/RowDefinition&#62;
&#60;RowDefinition Height=”30″&#62;&#60;/RowDefinition&#62;
&#60;RowDefinition Height=”30″&#62;&#60;/RowDefinition&#62;
&#60;RowDefinition Height=”30″&#62;&#60;/RowDefinition&#62;
&#60;RowDefinition [...]]]></description>
		<wfw:commentRss>http://www.codeforasp.net/silverlight-grid-layout.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
