<?xml version="1.0" encoding="UTF-8"?><?xml-stylesheet type="text/xsl" media="screen" href="/App_Themes/default/rss.xslt"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom" xmlns:trackback="http://madskills.com/public/xml/rss/module/trackback/" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:media="http://search.yahoo.com/mrss/" xmlns:evnet="http://www.mscommunities.com/rssmodule/"><channel><title>Comment Feed for Silverlight Geek - An interview with Jesse Liberty (Continuum on Channel 9)</title><atom:link rel="self" type="application/rss+xml" href="http://channel9.msdn.com/shows/continuum/silverlight-geek-an-interview-with-jesse-liberty/rss/default.aspx" /><image><url>http://mschnlnine.vo.llnwd.net/d1/Dev/App_Themes/C9/images/feedimage.png</url><title>Comment Feed for Silverlight Geek - An interview with Jesse Liberty (Continuum on Channel 9)</title><link>http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/</link></image><description>Silverlight Geek - An interview with Jesse Liberty</description><link>http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/</link><language>en-us</language><pubDate>Thu, 10 Sep 2009 11:17:14 GMT</pubDate><lastBuildDate>Thu, 10 Sep 2009 11:17:14 GMT</lastBuildDate><generator>EvNet (EvNet, Version=1.0.3608.3122, Culture=neutral, PublicKeyToken=null)</generator><item><title>Re: Silverlight Geek - An interview with Jesse Liberty</title><description>&lt;p&gt;thanks for this topic see online : &lt;br /&gt;&lt;a href="http://www.dd7.net/"&gt;توبيكات&lt;/a&gt; ا &lt;a href="http://chat.dd7.net/"&gt;شات&lt;/a&gt; ا &lt;a href="http://chat.dd7.net/"&gt;دردشة&lt;/a&gt;&amp;nbsp;,;,&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/?CommentID=490852</link><pubDate>Thu, 10 Sep 2009 11:17:14 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/?CommentID=490852</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/490852/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>thanks for this topic see online : توبيكات ا شات ا دردشة&amp;nbsp;,;,</evnet:previewtext><dc:creator>Noureddine1</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/490852/Trackback.aspx</trackback:ping></item><item><title>Re: Re: Silverlight Geek - An interview with Jesse Liberty</title><description>&lt;p&gt;Thanks cdwatkings.&amp;nbsp; That helped a lot.&amp;nbsp; I went to add Background getter/setter to class.&amp;nbsp; Then built.&amp;nbsp; Then&amp;nbsp;compiler said you have to use&amp;nbsp;"new" to override base class.&amp;nbsp; So I did and it worked right away.&amp;nbsp; So I did not have to do the binding thing.&amp;nbsp; Not sure if this is how you are supposed to do it in SL land, but it seems to work.&amp;nbsp; Your other comments got me sorted.&amp;nbsp; cheers.&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/?CommentID=475832</link><pubDate>Sat, 27 Jun 2009 18:00:02 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/?CommentID=475832</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/475832/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Thanks cdwatkings.&amp;nbsp; That helped a lot.&amp;nbsp; I went to add Background getter/setter to class.&amp;nbsp; Then built.&amp;nbsp; Then&amp;nbsp;compiler said you have to use&amp;nbsp;"new" to override base class.&amp;nbsp; So I did and it worked right away.&amp;nbsp; So I did not have to do the binding thing.&amp;nbsp; Not&amp;#8230;</evnet:previewtext><dc:creator>William Stacey</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/475832/Trackback.aspx</trackback:ping></item><item><title>Re: Silverlight Geek - An interview with Jesse Liberty</title><description>&lt;p&gt;1) If I make a UserControl.&amp;nbsp; How can I make, for example, the Background color of the layoutroot (grid) be settable from the designer?&amp;nbsp; I want to hook-up the background property to the grid.&lt;/p&gt;
&lt;p&gt;First you set a property on your usercontrol.&amp;nbsp; Any property on the user control well be settable in the designer if blend knows how to display its type&amp;nbsp;(such as a string/enum/color etc.).&amp;nbsp; Then you databind the grid to the usercontrols property.&amp;nbsp; So you would write something like this in the xaml for the user control: &amp;lt;Grid Background="{TemplateBinding Background}"/&amp;gt;.&amp;nbsp; You&amp;nbsp;will probably&amp;nbsp;want to make the usercontrols background property be a dependancy property, so that other people can bind data to it (although making DP's are a little more challenging go look it up).&lt;/p&gt;
&lt;p&gt;2) How, in c#, to set the Margins of a control?&lt;/p&gt;
&lt;p&gt;If I remeber right you get a refrence to the control (such as by its ID), and then just type myGrid.Margin = new Thickness(60);&amp;nbsp; Thickness has several diffrent overloads if you want to set each side diffrently.&lt;/p&gt;
&lt;p&gt;3) I have a SL3 project am testing.&amp;nbsp; Can't seem to get other browsers (i.e. non-dev) to install the SL control.&amp;nbsp; Is this because you need to install the SL dev on the client first?&amp;nbsp; Or should it just download and run SL3beta normally.&amp;nbsp; Do I have to wait for RTW to have other clients be able to load SL3?&lt;/p&gt;
&lt;p&gt;SL3 as far as I am aware does not have a go-live license yet.&amp;nbsp; As such they have only released the developer's runtime.&amp;nbsp; The user must have the SL3 runtime already when it starts to have it work right.&amp;nbsp; The reason for this is they didnt want people getting "autoupgraded" to SL3 if SL3 had a bug.&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/?CommentID=475785</link><pubDate>Sat, 27 Jun 2009 06:31:46 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/?CommentID=475785</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/475785/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>1) If I make a UserControl.&amp;nbsp; How can I make, for example, the Background color of the layoutroot (grid) be settable from the designer?&amp;nbsp; I want to hook-up the background property to the grid.
First you set a property on your usercontrol.&amp;nbsp; Any property on the user control well be&amp;#8230;</evnet:previewtext><dc:creator>cdwatkins</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/475785/Trackback.aspx</trackback:ping></item><item><title>Re: Silverlight Geek - An interview with Jesse Liberty</title><description>&lt;p&gt;Wouldn't it be cool to allow a SL object in posts on Channel9 and we can post xaml in the editor?&amp;nbsp; Or is that just me?&amp;nbsp; That way you can post samples and examples and actually see them work in the post.&amp;nbsp; Maybe we can do this already.&lt;/p&gt;
&lt;p&gt;Random - curious how a video on SL opens MediaPlayer to play the video?? :-)&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/?CommentID=475720</link><pubDate>Fri, 26 Jun 2009 19:19:15 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/?CommentID=475720</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/475720/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Wouldn't it be cool to allow a SL object in posts on Channel9 and we can post xaml in the editor?&amp;nbsp; Or is that just me?&amp;nbsp; That way you can post samples and examples and actually see them work in the post.&amp;nbsp; Maybe we can do this already.
Random - curious how a video on SL opens MediaPlayer to play the video?? :-)</evnet:previewtext><dc:creator>William Stacey</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/475720/Trackback.aspx</trackback:ping></item><item><title>Re: Silverlight Geek - An interview with Jesse Liberty</title><description>&lt;p&gt;Thanks Adam and Jesse - interesting insight into both Microsoft and the role Jesse has there.&amp;nbsp; I like Jesse's approach, blogs and video which really hit home for many developers getting to grips with the technology.&lt;/p&gt;
&lt;p&gt;Cheers&lt;/p&gt;
&lt;p&gt;&lt;a href="http://twitter.com/IanBlackburn"&gt;Ian Blackburn&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&lt;a href="http://silverlightforbusiness.net"&gt;Silverlightforbusiness.net&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/?CommentID=475718</link><pubDate>Fri, 26 Jun 2009 19:11:14 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/?CommentID=475718</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/475718/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Thanks Adam and Jesse - interesting insight into both Microsoft and the role Jesse has there.&amp;nbsp; I like Jesse's approach, blogs and video which really hit home for many developers getting to grips with the technology.
Cheers
Ian Blackburn
Silverlightforbusiness.net
&amp;nbsp;</evnet:previewtext><dc:creator>IanBlackburn</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/475718/Trackback.aspx</trackback:ping></item><item><title>Re: Silverlight Geek - An interview with Jesse Liberty</title><description>&lt;p&gt;Thanks.&amp;nbsp; I dig Jesse's videos.&amp;nbsp; I am finally doing a SL client because of his videos that help me get started.&amp;nbsp; Few questions currently have.&lt;/p&gt;
&lt;p&gt;1) If I make a UserControl.&amp;nbsp; How can I make, for example, the Background color of the layoutroot (grid) be settable from the designer?&amp;nbsp; I want to hook-up the background property to the grid.&lt;/p&gt;
&lt;p&gt;2) How, in c#, to set the Margins of a control?&lt;/p&gt;
&lt;p&gt;3) I have a SL3 project am testing.&amp;nbsp; Can't seem to get other browsers (i.e. non-dev) to install the SL control.&amp;nbsp; Is this because you need to install the SL dev on the client first?&amp;nbsp; Or should it just download and run SL3beta normally.&amp;nbsp; Do I have to wait for RTW to have other clients be able to load SL3?&lt;/p&gt;
&lt;p&gt;BTW - am really seem to like layout more in SL then in html and tables.&amp;nbsp; Layout in SL with margins and left, right, center, and auto sizes&amp;nbsp;can get a bit confusing, but I will get it eventually.&amp;nbsp; Also things like master pages makes so much more sense to me as a managed coder.&amp;nbsp;&amp;nbsp;It is opposite of&amp;nbsp;html master&amp;nbsp;pages.&amp;nbsp; In SL, you create 1 page with a contentplaceholder and poke your content into&amp;nbsp;the placeholder (with no&amp;nbsp;postback btw and very snappy).&amp;nbsp; In html, your&amp;nbsp;content pages ref the master page.&amp;nbsp; I like the SL model better in the way I think.&amp;nbsp;&lt;/p&gt;
&lt;p&gt;Thanks much.&lt;/p&gt;</description><comments></comments><link>http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/?CommentID=475711</link><pubDate>Fri, 26 Jun 2009 18:48:04 GMT</pubDate><guid isPermaLink="false">http://channel9.msdn.com/shows/Continuum/Silverlight-Geek-An-interview-with-Jesse-Liberty/?CommentID=475711</guid><evnet:views>0</evnet:views><evnet:viewtrackingurl>http://channel9.msdn.com/475711/WebViewBug.aspx?EVT=0</evnet:viewtrackingurl><evnet:previewtext>Thanks.&amp;nbsp; I dig Jesse's videos.&amp;nbsp; I am finally doing a SL client because of his videos that help me get started.&amp;nbsp; Few questions currently have.
1) If I make a UserControl.&amp;nbsp; How can I make, for example, the Background color of the layoutroot (grid) be settable from the&amp;#8230;</evnet:previewtext><dc:creator>William Stacey</dc:creator><slash:comments>0</slash:comments><wfw:commentRss></wfw:commentRss><trackback:ping>http://channel9.msdn.com/475711/Trackback.aspx</trackback:ping></item></channel></rss>