<?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/"
	xmlns:georss="http://www.georss.org/georss" xmlns:geo="http://www.w3.org/2003/01/geo/wgs84_pos#" xmlns:media="http://search.yahoo.com/mrss/"
	>

<channel>
	<title>Latestdotnet's Weblog</title>
	<atom:link href="http://latestdotnet.wordpress.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://latestdotnet.wordpress.com</link>
	<description>Blog about latest Microsoft technologies</description>
	<lastBuildDate>Sun, 27 Jul 2008 08:47:27 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='latestdotnet.wordpress.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://s2.wp.com/i/buttonw-com.png</url>
		<title>Latestdotnet's Weblog</title>
		<link>http://latestdotnet.wordpress.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://latestdotnet.wordpress.com/osd.xml" title="Latestdotnet&#039;s Weblog" />
	<atom:link rel='hub' href='http://latestdotnet.wordpress.com/?pushpress=hub'/>
		<item>
		<title>Extending User Control in Silverlight 2 Beta 2</title>
		<link>http://latestdotnet.wordpress.com/2008/07/01/extending-user-control-in-silverlight-2-beta-2/</link>
		<comments>http://latestdotnet.wordpress.com/2008/07/01/extending-user-control-in-silverlight-2-beta-2/#comments</comments>
		<pubDate>Tue, 01 Jul 2008 05:36:12 +0000</pubDate>
		<dc:creator>latestdotnet</dc:creator>
				<category><![CDATA[Silverlight 2]]></category>
		<category><![CDATA[Breaking changes in Silverlight 2 Beta 2]]></category>
		<category><![CDATA[Extending the custom class]]></category>
		<category><![CDATA[Extending User Controls in Silverlight 2]]></category>
		<category><![CDATA[UserControl inheritance]]></category>

		<guid isPermaLink="false">http://latestdotnet.wordpress.com/?p=19</guid>
		<description><![CDATA[There is a breaking change in Beta 2 for the way user control inheritance is implemented. In Beta 1 if you have created a base class which you want to extend in other pages it is done simply replacing the base class name with “&#60;UserControl …. “ tag as “&#60;BaseClass …”. But this does not [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=latestdotnet.wordpress.com&amp;blog=3991587&amp;post=19&amp;subd=latestdotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p><span style="font-size:11pt;">There is a breaking change in Beta 2 for the way user control inheritance is implemented. In Beta 1 if you have created a base class which you want to extend in other pages it is done simply replacing the base class name with “&lt;UserControl …. “ tag as “&lt;BaseClass …”.<br />
But this does not work in Beta 2. To solve this problem you need declare the namespace of your library and then include it as it was done in case of including in custom controls.</span></p>
<p>Suppose my base class is BaseRnd, which is just inheriting the UserControl class</p>
<p><span style="font-size:10pt;color:#0000ff;">namespace</span><span style="font-size:10pt;"> RnD<br />
</span><span style="font-size:10pt;">{<br />
</span><span style="font-size:10pt;"><span>    </span><span style="color:#0000ff;">public</span> <span style="color:#0000ff;">class</span> <span style="color:#2b91af;">BaseRnd</span> : <span style="color:#2b91af;">UserControl<br />
</span></span><span style="font-size:10pt;"><span>    </span>{</span><span style="font-size:10pt;"><span>      <br />
    </span></span><span style="font-size:10pt;">}<br />
</span><span style="font-size:10pt;">}</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;"><span style="font-size:small;font-family:Calibri;">Child Class inheriting the BaseRnd<br />
</span><span style="font-size:10pt;color:#0000ff;">namespace</span><span style="font-size:10pt;"> RnD<br />
</span></span><span style="font-size:10pt;">{<br />
</span><span style="font-size:10pt;"><span>    </span><span style="color:#0000ff;">public</span> <span style="color:#0000ff;">partial</span> <span style="color:#0000ff;">class</span> <span style="color:#2b91af;">TestPage</span> : <span style="color:#2b91af;">BaseRnd<br />
</span></span><span style="font-size:10pt;"><span>    </span>{<br />
</span><span style="font-size:10pt;"><span>        </span><span style="color:#0000ff;">public</span> TestPage()<br />
</span><span style="font-size:10pt;"><span>        </span>{<br />
</span><span style="font-size:10pt;"><span>            </span>InitializeComponent();<span>            <br />
</span></span><span style="font-size:10pt;"><span>        </span>}<span>       <br />
</span></span><span style="font-size:10pt;"><span>    </span>}<br />
</span><span style="font-size:10pt;">}</span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:10pt;"><span style="font-size:10pt;color:#0000ff;">&lt;</span><span style="font-size:10pt;color:#a31515;">myBase</span><span style="font-size:10pt;color:#0000ff;">:</span><span style="font-size:10pt;color:#a31515;">BaseRnd</span><span style="font-size:10pt;color:#ff0000;"> x</span><span style="font-size:10pt;color:#0000ff;">:</span><span style="font-size:10pt;color:#ff0000;">Class</span><span style="font-size:10pt;color:#0000ff;">=&#8221;RnD.TestPage&#8221;<br />
</span><span style="font-size:10pt;"><span>   </span><span style="color:#ff0000;"><span> </span>xmlns</span><span style="color:#0000ff;">=<a href="http://schemas.microsoft.com/winfx/2006/xaml/presentation">http://schemas.microsoft.com/winfx/2006/xaml/presentation</a></span> <br />
</span><span style="font-size:10pt;"><span>   </span><span style="color:#ff0000;"><span> </span>xmlns</span><span style="color:#0000ff;">:</span><span style="color:#ff0000;">x</span><span style="color:#0000ff;">=<a href="http://schemas.microsoft.com/winfx/2006/xaml">http://schemas.microsoft.com/winfx/2006/xaml</a></span> <br />
</span><span style="font-size:10pt;"><span>   </span><span style="color:#ff0000;"><span> </span><span style="background:yellow;">xmlns</span></span><span style="background:yellow;color:#0000ff;">:</span><span style="background:yellow;color:#ff0000;">myBase</span><span style="background:yellow;color:#0000ff;">=&#8221;clr-namespace:RnD</span><span style="color:#0000ff;">&#8220;<br />
</span></span><span style="font-size:10pt;line-height:115%;"><span>   </span><span style="color:#ff0000;"><span> </span>Width</span><span style="color:#0000ff;">=&#8221;400&#8243;</span><span style="color:#ff0000;"> Height</span><span style="color:#0000ff;">=&#8221;300&#8243;&gt;</span></span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"> </p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:small;"><span style="font-family:Calibri;">Change the closing tag as well.<br />
<span style="font-size:small;"><span style="font-family:Calibri;">Do this and it will start working </span></span></span></span><span style="font-size:small;"><span style="font-family:Calibri;"><span style="font-size:small;"><span style="font-family:Calibri;"><span style="font-size:small;"><span style="font-family:Wingdings;"><span>J<br />
</span></span></span></span></span></span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:small;"><span style="font-family:Calibri;"><span style="font-size:small;"></span></span></span></p>
<p class="MsoNormal" style="line-height:normal;margin:0;"><span style="font-size:small;"><span style="font-family:Calibri;"><span style="font-size:small;"><span style="font-family:Calibri;"><span style="font-size:small;"><span style="font-family:Calibri;"><span><strong>Check out my site </strong><a href="http://www.silverlightchannel.com"><strong>www.silverlightchannel.com</strong></a><strong>, just started adding some articles.</strong></span></span></span></span></span></span></span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/latestdotnet.wordpress.com/19/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/latestdotnet.wordpress.com/19/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/latestdotnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/latestdotnet.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/latestdotnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/latestdotnet.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/latestdotnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/latestdotnet.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/latestdotnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/latestdotnet.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/latestdotnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/latestdotnet.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/latestdotnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/latestdotnet.wordpress.com/19/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/latestdotnet.wordpress.com/19/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/latestdotnet.wordpress.com/19/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=latestdotnet.wordpress.com&amp;blog=3991587&amp;post=19&amp;subd=latestdotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://latestdotnet.wordpress.com/2008/07/01/extending-user-control-in-silverlight-2-beta-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/609827f683e4e8a4bfe9eae1c3ef7e78?s=96&#38;d=identicon" medium="image">
			<media:title type="html">latestdotnet</media:title>
		</media:content>
	</item>
		<item>
		<title>Isolated Storage Silverlight 2</title>
		<link>http://latestdotnet.wordpress.com/2008/06/29/isolated-storage-silverlight-2/</link>
		<comments>http://latestdotnet.wordpress.com/2008/06/29/isolated-storage-silverlight-2/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 08:27:27 +0000</pubDate>
		<dc:creator>latestdotnet</dc:creator>
				<category><![CDATA[Silverlight 2]]></category>
		<category><![CDATA[Isolated Storage in Silverlight]]></category>
		<category><![CDATA[Silverlight 2 Isolated Storage]]></category>

		<guid isPermaLink="false">http://latestdotnet.wordpress.com/?p=16</guid>
		<description><![CDATA[ What is Isolated Storage Isolated storage is a data storage mechanism that helps in storing some data on the client machine. With isolated storage, data is always isolated by user and by assembly. Credentials such as the origin or the strong name of the assembly determine assembly identity. Data can also be isolated by application [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=latestdotnet.wordpress.com&amp;blog=3991587&amp;post=16&amp;subd=latestdotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p> <span style="font-family:Arial;"><strong><span style="color:#000066;">What is Isolated Storage</span><br />
</strong>Isolated storage is a data storage mechanism that helps in storing some data on the client machine. With isolated storage, data is always isolated by user and by assembly. Credentials such as the origin or the strong name of the assembly determine assembly identity. Data can also be isolated by application domain, using similar credentials. Using isolated storage enables partially trusted applications to store data in a manner that is controlled by the computer&#8217;s security policy. This is especially useful for Web applications and downloaded components that a user might want to run cautiously. Security policy rarely grants this kind of code permission to access the file system using standard I/O mechanisms, but, by default, code running from the local computer, a local network, or the Internet is granted the right to use isolated storage.<br />
<span style="font-family:Arial;"><strong><span style="color:#000066;">Non-Volatile Storage</span></strong><br />
Silverlight 2 has changed the implementation of Isolated Storage and has made it a non volatile cache, which means that whatever is saved as isolated storage will not be cleared when user clears the browser cache. The files are stored independently of browser cache, which is shared across the browsers and easily maintained by the application code. It can anytime be removed by user or by application.<br />
<strong><em>Location of Isolated Storage in Vista</em></strong><br />
%:\Users\%\AppData\LocalLow\Microsoft\Silverlight\is<br />
</span></span><span style="font-family:arial;"><strong><em>Location of Isolated Storage in Windows XP<br />
</em></strong>%:\Documents and Settings\%\Local Settings\Application Data\Microsoft\Silverlight\is</span></p>
<p><span style="font-family:arial;"><span style="font-family:arial;"><strong>Isolated Storage Quota limit in Silverlight 2<br />
</strong>The default limit for isolated storage in Silverlight 2 is given as 100 kb. It’s much much lesser than the default storage limit given in Silverlight 1.1 which is 1 mb.<br />
This limit of 100 kb can be increased to unlimited storage, but this can only be done with consent of the user accessing the application. So whenever the application requires more than 100 kb of space, an alert will be generated and user need to accept it for increasing the size.</span></span></p>
<h2><span style="color:#ff0000;"><a href="http://www.silverlightchannel.com/2008/07/isolated-storage-in-silverlight-2.html">Full article with source code is available here</a></span></h2>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/latestdotnet.wordpress.com/16/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/latestdotnet.wordpress.com/16/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/latestdotnet.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/latestdotnet.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/latestdotnet.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/latestdotnet.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/latestdotnet.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/latestdotnet.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/latestdotnet.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/latestdotnet.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/latestdotnet.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/latestdotnet.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/latestdotnet.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/latestdotnet.wordpress.com/16/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/latestdotnet.wordpress.com/16/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/latestdotnet.wordpress.com/16/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=latestdotnet.wordpress.com&amp;blog=3991587&amp;post=16&amp;subd=latestdotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://latestdotnet.wordpress.com/2008/06/29/isolated-storage-silverlight-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/609827f683e4e8a4bfe9eae1c3ef7e78?s=96&#38;d=identicon" medium="image">
			<media:title type="html">latestdotnet</media:title>
		</media:content>
	</item>
		<item>
		<title>State Management in Silverlight 2</title>
		<link>http://latestdotnet.wordpress.com/2008/06/29/state-management-in-silverlight-2/</link>
		<comments>http://latestdotnet.wordpress.com/2008/06/29/state-management-in-silverlight-2/#comments</comments>
		<pubDate>Sun, 29 Jun 2008 08:25:08 +0000</pubDate>
		<dc:creator>latestdotnet</dc:creator>
				<category><![CDATA[Silverlight 2]]></category>
		<category><![CDATA[Isolated Storage Silverlight 2]]></category>
		<category><![CDATA[State Management in Silverlight 2]]></category>

		<guid isPermaLink="false">http://latestdotnet.wordpress.com/?p=15</guid>
		<description><![CDATA[In Asp.net the state management was used to be done either in client side which included the cookies, hidden fields, viewstate and query strings object or in server side which included the Application object, session object and other custom way for handling it. The architecture of Silverlight 2 and its implementation totally differs from the [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=latestdotnet.wordpress.com&amp;blog=3991587&amp;post=15&amp;subd=latestdotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>In Asp.net the state management was used to be done either in client side which included the cookies, hidden fields, viewstate and query strings object or in server side which included the Application object, session object and other custom way for handling it.<br />
The architecture of Silverlight 2 and its implementation totally differs from the architecture of asp.net. In Silverlight 2 everything is compiled and packaged into XAP files, which get copied on to the client machine whenever the person access the Silverlight based web site. So there are no server round trips and page request every time, so there are not much need of maintaining the state of the user or application.Anyway there are times when it is required to have some sort of state management mostly in business applications. State management in Silverlight 2 is typically done using the concept of Isolated storage.</p>
<p><strong>Silverlight State Management using Isolated Storage</strong><br />
I have done the POC on State management using the Silverlight Isolated storage. The application uses the XML serialization to send and store data at the virtual place at the client machine.</p>
<p><strong>State Management Demo</strong><br />
It stores some of the information about the User. The “Get Saved State” button retrieves the existing user values from the Isolated Storage area and “Save State” picks the data from all the text boxes and saves it.</p>
<h2><a href="http://www.silverlightchannel.com/2008/07/isolated-storage-in-silverlight-2.html"><span style="color:#ff0000;">Full article with source code is available &#8220;</span><span style="color:#ff0000;">here&#8221;</span></a></h2>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/latestdotnet.wordpress.com/15/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/latestdotnet.wordpress.com/15/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/latestdotnet.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/latestdotnet.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/latestdotnet.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/latestdotnet.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/latestdotnet.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/latestdotnet.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/latestdotnet.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/latestdotnet.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/latestdotnet.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/latestdotnet.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/latestdotnet.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/latestdotnet.wordpress.com/15/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/latestdotnet.wordpress.com/15/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/latestdotnet.wordpress.com/15/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=latestdotnet.wordpress.com&amp;blog=3991587&amp;post=15&amp;subd=latestdotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://latestdotnet.wordpress.com/2008/06/29/state-management-in-silverlight-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/609827f683e4e8a4bfe9eae1c3ef7e78?s=96&#38;d=identicon" medium="image">
			<media:title type="html">latestdotnet</media:title>
		</media:content>
	</item>
		<item>
		<title>ComboBox control Silverlight</title>
		<link>http://latestdotnet.wordpress.com/2008/06/21/combobox-control-silverlight/</link>
		<comments>http://latestdotnet.wordpress.com/2008/06/21/combobox-control-silverlight/#comments</comments>
		<pubDate>Sat, 21 Jun 2008 13:19:00 +0000</pubDate>
		<dc:creator>latestdotnet</dc:creator>
				<category><![CDATA[Silverlight 2 custom controls]]></category>
		<category><![CDATA[Combo Box control in Silverlight 2]]></category>

		<guid isPermaLink="false">http://latestdotnet.wordpress.com/2008/06/21/combobox-control-silverlight/</guid>
		<description><![CDATA[Although there are lot of rich controls introduced in Silverlight 2, but couple of controls are missing. One of the controls is Combo Box. We have created a user control which provides the same functionality as provided by normal combo box control. Full article with source code is available &#8220;here&#8221;<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=latestdotnet.wordpress.com&amp;blog=3991587&amp;post=13&amp;subd=latestdotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p>Although there are lot of rich controls introduced in Silverlight 2, but couple of controls are missing. One of the controls is Combo Box. We have created a user control which provides the same functionality as provided by normal combo box control.<br />
<a href="http://bp2.blogger.com/_qHc-1za4jGs/SFzXBwK5l0I/AAAAAAAAAAM/oVcSAa5ftLQ/s1600-h/ComboDemo.jpg"><img style="cursor:hand;" src="http://bp2.blogger.com/_qHc-1za4jGs/SFzXBwK5l0I/AAAAAAAAAAM/oVcSAa5ftLQ/s320/ComboDemo.jpg" border="0" alt="" /></a></p>
<h2><a href="http://www.silverlightchannel.com/2008/06/combobox-control-silverlight.html"><span style="color:#ff0000;">Full article with source code is available &#8220;</span><span style="color:#ff0000;">here&#8221;</span></a></h2>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/latestdotnet.wordpress.com/13/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/latestdotnet.wordpress.com/13/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/latestdotnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/latestdotnet.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/latestdotnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/latestdotnet.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/latestdotnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/latestdotnet.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/latestdotnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/latestdotnet.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/latestdotnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/latestdotnet.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/latestdotnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/latestdotnet.wordpress.com/13/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/latestdotnet.wordpress.com/13/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/latestdotnet.wordpress.com/13/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=latestdotnet.wordpress.com&amp;blog=3991587&amp;post=13&amp;subd=latestdotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://latestdotnet.wordpress.com/2008/06/21/combobox-control-silverlight/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/609827f683e4e8a4bfe9eae1c3ef7e78?s=96&#38;d=identicon" medium="image">
			<media:title type="html">latestdotnet</media:title>
		</media:content>

		<media:content url="http://bp2.blogger.com/_qHc-1za4jGs/SFzXBwK5l0I/AAAAAAAAAAM/oVcSAa5ftLQ/s320/ComboDemo.jpg" medium="image" />
	</item>
		<item>
		<title>Silverlight 2.0 latest from Microsoft</title>
		<link>http://latestdotnet.wordpress.com/2008/06/16/silverlight-2-features/</link>
		<comments>http://latestdotnet.wordpress.com/2008/06/16/silverlight-2-features/#comments</comments>
		<pubDate>Mon, 16 Jun 2008 11:50:47 +0000</pubDate>
		<dc:creator>latestdotnet</dc:creator>
				<category><![CDATA[Silverlight 2]]></category>
		<category><![CDATA[Latest Silverlight]]></category>
		<category><![CDATA[Rich Interactive Application]]></category>
		<category><![CDATA[Silverlight 2 Beta 2]]></category>
		<category><![CDATA[Silverlight 2.0]]></category>
		<category><![CDATA[Silverlight2]]></category>

		<guid isPermaLink="false"></guid>
		<description><![CDATA[Little Silverlight Overview Cool Silverlight is a cross browser-platform language (XAML) from Microsoft. It’s a part of hottest technologies included in Framework 3.5. Silverlight is a great initiative from Microsoft giving a great tool for building next generation rich user interactive applications. Note There are currently two version in Silverlight, Silverlight 1.x and Silverlight 2. [...]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=latestdotnet.wordpress.com&amp;blog=3991587&amp;post=1&amp;subd=latestdotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></description>
			<content:encoded><![CDATA[<p style="line-height:14.25pt;"><strong><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';">Little Silverlight Overview</span></strong></p>
<p class="MsoNormal" style="vertical-align:top;line-height:140%;"><span style="font-size:10pt;color:#000000;line-height:140%;font-family:'Verdana','sans-serif';"><span style="font-size:8.5pt;line-height:140%;">Cool Silverlight is a cross browser-platform language (XAML) from Microsoft. It’s a part of hottest technologies included in Framework 3.5. Silverlight is a great initiative from Microsoft giving a great tool for building next generation rich user interactive applications.</span></span></p>
<p style="line-height:14.25pt;"><span style="font-size:8.5pt;line-height:140%;"><strong><span style="background:silver;"><span style="font-size:10pt;background:silver;color:#000000;font-family:'Verdana','sans-serif';">Note</span></span></strong><span style="font-size:10pt;background:silver;color:#000000;font-family:'Verdana','sans-serif';"><br />
<span style="background:silver;">There are currently two version in Silverlight, Silverlight 1.x and Silverlight 2. I would suggest that you learn and develop applications in Silverlight 2, as it includes plethora of new features, better style and support for programming.</span></span></span></p>
<p style="line-height:14.25pt;">
<div style="line-height:14.25pt;"><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';">Some of the features of Silverlight, that I like the most includes:</span></div>
<p><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';"></p>
<div><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';"><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';"><strong>Cross Browser – Cross Platform</strong></span><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';"><br />
</span><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';">Since everything is encapsulated in a XAP file and all the runtimes are included in the Silverlight plugin, this really makes the Silverlight based applications browser and platform independent.</span></p>
<div></div>
<p></span></div>
<p></span><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';"><span style="color:#000000;font-family:'Verdana','sans-serif';"><font face="'Verdana','sans-serif'" color="#000000"><font face="'Verdana','sans-serif'" color="#000000"></p>
<p style="line-height:14.25pt;"><strong>No Page Round Trips</strong></p>
<p></font></font></span><font face="'Verdana','sans-serif'" color="#000000"></p>
<p style="line-height:14.25pt;"> </p>
<p></font></span></p>
<p style="line-height:14.25pt;"><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';"><br />
</span><span style="font-size:8.5pt;line-height:140%;"><span style="font-size:small;font-family:Times New Roman;">Though Silverlight is tightly integrated within a browser but it does not works like the way older language based applications used to work. Other than the AJAX based implementation, every request on the web page needs to be furnished from the server, causing a whole page to refresh and giving not so good experience to the user.</span></span></p>
<p> <span style="font-size:8.5pt;line-height:140%;"><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';">Silverlight 2.0 encapsulates everything in the XAP file (XAP files are packaged file that comprise all the application compiled code, it also includes the code for various other assembly references used in the application), which gets cached on the browser cache. This includes all the compiled code which earlie used to reside on the server.  </span></span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><strong><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';">Rich Controls<br />
</span></strong><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';">Silverlight 2 includes many rich controls like (Textbox, listbox, check box, radio buttons etc) and controls for layout manager Grid Panel, Canvas and Stack Panel.</span></p>
<p style="line-height:14.25pt;"><strong><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';">Missing Control</span></strong><strong><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';"><br />
</span></strong><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';">One of the important control that is missing in Silverlight 2 is combo box control. But cheers, soon I will be writing the custom control for providing the functionality of combo box control.</span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><strong><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';">Silverlight Architecture</span></strong><strong><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';"><br />
<strong><span style="font-size:8pt;line-height:115%;"><span style="font-family:'Verdana','sans-serif';">Check out this link on the MSDN to learn more about the Silverlight Architecture and the cool stuff you can do with it </span>J<span style="font-size:8pt;line-height:115%;"> .. </span></span><em><span style="font-family:'Verdana','sans-serif';">enjoy learning</span></em><em><br />
</em><span style="font-size:8pt;line-height:115%;"><strong><a href="http://msdn.microsoft.com/en-us/library/bb404713(VS.95).aspx">http://msdn.microsoft.com/en-us/library/bb404713(VS.95).aspx</a> </strong></span></strong></span></strong></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><strong><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';"> Silverlight 2 Beta 2</span></strong><strong><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';"><br />
</span></strong><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';">Anyway I was intended to write more about the S2 beta 2 but just thought to give little overview about silverlight2.  Read more about it <a href="http://weblogs.asp.net/scottgu/archive/2008/06/06/silverlight-2-beta2-released.aspx">“here”</a>. </span></p>
<p class="MsoNormal" style="margin:0 0 10pt;"><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';">You can download the latest version Silverlight 2 Beta 2 from </span><span style="font-size:10pt;color:#000000;font-family:'Verdana','sans-serif';"><a href="http://silverlight.net/GetStarted/" target="_blank">here</a>.</span></p>
<br /><img alt="" border="0" src="http://feeds.wordpress.com/1.0/categories/latestdotnet.wordpress.com/1/" /> <img alt="" border="0" src="http://feeds.wordpress.com/1.0/tags/latestdotnet.wordpress.com/1/" /> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/latestdotnet.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/latestdotnet.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godelicious/latestdotnet.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/delicious/latestdotnet.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gofacebook/latestdotnet.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/facebook/latestdotnet.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gotwitter/latestdotnet.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/twitter/latestdotnet.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gostumble/latestdotnet.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/stumble/latestdotnet.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/godigg/latestdotnet.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/digg/latestdotnet.wordpress.com/1/" /></a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/goreddit/latestdotnet.wordpress.com/1/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/reddit/latestdotnet.wordpress.com/1/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=latestdotnet.wordpress.com&amp;blog=3991587&amp;post=1&amp;subd=latestdotnet&amp;ref=&amp;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://latestdotnet.wordpress.com/2008/06/16/silverlight-2-features/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://0.gravatar.com/avatar/609827f683e4e8a4bfe9eae1c3ef7e78?s=96&#38;d=identicon" medium="image">
			<media:title type="html">latestdotnet</media:title>
		</media:content>
	</item>
	</channel>
</rss>
