<?xml version="1.0" encoding="UTF-8"?><rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	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/"
		>
<channel>
	<title>Comments for davidpoll.com</title>
	<atom:link href="http://www.davidpoll.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.davidpoll.com</link>
	<description>Software development and other goofy geeky goodness.</description>
	<lastBuildDate>Tue, 23 Aug 2011 19:01:58 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.2.1</generator>
	<item>
		<title>Comment on Making printing easier in Silverlight 4 by Cedric</title>
		<link>http://www.davidpoll.com/2010/04/16/making-printing-easier-in-silverlight-4/comment-page-2/#comment-8526</link>
		<dc:creator>Cedric</dc:creator>
		<pubDate>Tue, 23 Aug 2011 19:01:58 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2010/04/16/making-printing-easier-in-silverlight-4/#comment-8526</guid>
		<description>Hi !

I have a RadGridview filled in a first part of my application which contains multiple hierarchical Gridview and I would like to print it with your CollectionPrinter. How can I use the bodyTemplate to do this and fill the DataTemplate correctly.

Thanks</description>
		<content:encoded><![CDATA[<p>Hi !</p>
<p>I have a RadGridview filled in a first part of my application which contains multiple hierarchical Gridview and I would like to print it with your CollectionPrinter. How can I use the bodyTemplate to do this and fill the DataTemplate correctly.</p>
<p>Thanks</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Relative hyperlinks with Silverlight navigation by Jonathan</title>
		<link>http://www.davidpoll.com/2009/09/20/relative-hyperlinks-with-silverlight-navigation/comment-page-1/#comment-8494</link>
		<dc:creator>Jonathan</dc:creator>
		<pubDate>Wed, 10 Aug 2011 22:51:48 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/20/relative-hyperlinks-with-silverlight-navigation/#comment-8494</guid>
		<description>@adam (comment 3)

&lt;blockquote cite=&quot;#commentbody-8465&quot;&gt;
&lt;strong&gt;&lt;a href=&quot;#comment-8465&quot; rel=&quot;nofollow&quot;&gt;adam&lt;/a&gt; :&lt;/strong&gt;
          If you add more than one UriMapping object that contains the same value in the Uri property, only the first instance in the collection is used for mapping the URI to a new URI.
         &lt;/blockquote&gt;

Is this still true?  Wouldn&#039;t it initialize a new instance?</description>
		<content:encoded><![CDATA[<p>@adam (comment 3)</p>
<blockquote cite="#commentbody-8465"><p>
<strong><a href="#comment-8465" rel="nofollow">adam</a> :</strong><br />
          If you add more than one UriMapping object that contains the same value in the Uri property, only the first instance in the collection is used for mapping the URI to a new URI.
         </p></blockquote>
<p>Is this still true?  Wouldn&#8217;t it initialize a new instance?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About Me by Parameswari</title>
		<link>http://www.davidpoll.com/about/comment-page-1/#comment-8487</link>
		<dc:creator>Parameswari</dc:creator>
		<pubDate>Sat, 06 Aug 2011 09:42:36 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/msftblog/?page_id=2#comment-8487</guid>
		<description>Hi David,
  I saw your blog regarding &quot;To XAML with love&quot;
In Silverlight application I want to serialize my controls .
Iam beginner in Silverlight ,the information provided in that blog  is not sufficient  for me .Please provide any document regarding this.

Rds,
Parameswari</description>
		<content:encoded><![CDATA[<p>Hi David,<br />
  I saw your blog regarding &#8220;To XAML with love&#8221;<br />
In Silverlight application I want to serialize my controls .<br />
Iam beginner in Silverlight ,the information provided in that blog  is not sufficient  for me .Please provide any document regarding this.</p>
<p>Rds,<br />
Parameswari</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on On-demand loading of assemblies with Silverlight Navigation &#8211; Revisited for Silverlight 4 Beta by brennt</title>
		<link>http://www.davidpoll.com/2010/02/01/on-demand-loading-of-assemblies-with-silverlight-navigation-revisited-for-silverlight-4-beta/comment-page-1/#comment-8474</link>
		<dc:creator>brennt</dc:creator>
		<pubDate>Fri, 29 Jul 2011 10:28:24 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2010/02/01/on-demand-loading-of-assemblies-with-silverlight-navigation-revisited-for-silverlight-4-beta/#comment-8474</guid>
		<description>hi, im not using your code, but...

when im trying to go like this:

[code]InternalContentFrame.Navigate(new Uri(&quot;P1.xaml&quot;, UriKind.RelativeOrAbsolute));[code]

i get an exception:

The type &quot;AssemblyName.Views.P1&quot; specified in the x:Class of &quot;AssemblyName;component/Views/P1.xaml&quot; could not be found in any loaded assembly.

which cant be true coz
1. control containing FRAME is located in the same assembly
2. this works like a charm:

[code]
[ImportMany(AllowRecomposition = true)]
public Page[] MEFPagesList { get; set; }

private void ContentFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)
        {
            e.Handled = true;
            InternalContentFrame.Content = MEFPagesList[0];
        }[/code]

unfortunately it does not support any of the &quot;navigation&quot; properties e.g. browser navigation support

can anyone help?</description>
		<content:encoded><![CDATA[<p>hi, im not using your code, but&#8230;</p>
<p>when im trying to go like this:</p>
<div class="cic_codes_div"><code>InternalContentFrame.Navigate(new Uri(&quot;P1.xaml&quot;, UriKind.RelativeOrAbsolute));[code]</p>
<p>i get an exception:</p>
<p>The type &quot;AssemblyName.Views.P1&quot; specified in the x:Class of &quot;AssemblyName;component/Views/P1.xaml&quot; could not be found in any loaded assembly.</p>
<p>which cant be true coz<br />
1. control containing FRAME is located in the same assembly<br />
2. this works like a charm:</p>
<p>[code]<br />
[ImportMany(AllowRecomposition = true)]<br />
public Page[] MEFPagesList { get; set; }</p>
<p>private void ContentFrame_NavigationFailed(object sender, NavigationFailedEventArgs e)<br />
        {<br />
            e.Handled = true;<br />
            InternalContentFrame.Content = MEFPagesList[0];<br />
        }</code></div>
<p>unfortunately it does not support any of the "navigation" properties e.g. browser navigation support</p>
<p>can anyone help?</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on To XAML, with love (an experiment with XAML Serialization in Silverlight) by Jaider</title>
		<link>http://www.davidpoll.com/2010/07/25/to-xaml-with-love-an-experiment-with-xaml-serialization-in-silverlight/comment-page-1/#comment-8468</link>
		<dc:creator>Jaider</dc:creator>
		<pubDate>Sun, 24 Jul 2011 14:52:20 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2010/07/25/to-xaml-with-love-an-experiment-with-xaml-serialization-in-silverlight/#comment-8468</guid>
		<description>I solved the problem, exposing the Points instead the Polyline. Look like the Polyline was override and lose the the binding.
public PointCollection MyPoints
        {
            get { return polyline.Points; }
            set { polyline.Points=value; }
        }</description>
		<content:encoded><![CDATA[<p>I solved the problem, exposing the Points instead the Polyline. Look like the Polyline was override and lose the the binding.<br />
public PointCollection MyPoints<br />
        {<br />
            get { return polyline.Points; }<br />
            set { polyline.Points=value; }<br />
        }</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on To XAML, with love (an experiment with XAML Serialization in Silverlight) by Jaider</title>
		<link>http://www.davidpoll.com/2010/07/25/to-xaml-with-love-an-experiment-with-xaml-serialization-in-silverlight/comment-page-1/#comment-8467</link>
		<dc:creator>Jaider</dc:creator>
		<pubDate>Sun, 24 Jul 2011 14:42:15 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2010/07/25/to-xaml-with-love-an-experiment-with-xaml-serialization-in-silverlight/#comment-8467</guid>
		<description>Hello David,
I am very thankful for sharing your code, works awesome! I just using serialization. that only required 2dlls:
SLaB.Utilities.Xaml.Serializer
SLaB.Utilities.Xaml.Serializer.UI

var uxs = new SLaB.Utilities.Xaml.Serializer.UI.UiXamlSerializer();

string mystrXAML = uxs.Serialize(MyPanel);

but in my panel, I had a control that has a Polyline and other stuff. After Serialization, the Points in the Polyline were delete. but the good thing, I can serialize the Polyline alone, like:
string myPLXAML = uxs.Serialize(MyPanel.PLControl.polyline);
polyline is the name of Polyline, I try to create a public property like 

        public Polyline MyPolyline
        {
            get { return polyline; }
            set { polyline=value; }
        }
But doesn&#039;t work... any idea????</description>
		<content:encoded><![CDATA[<p>Hello David,<br />
I am very thankful for sharing your code, works awesome! I just using serialization. that only required 2dlls:<br />
SLaB.Utilities.Xaml.Serializer<br />
SLaB.Utilities.Xaml.Serializer.UI</p>
<p>var uxs = new SLaB.Utilities.Xaml.Serializer.UI.UiXamlSerializer();</p>
<p>string mystrXAML = uxs.Serialize(MyPanel);</p>
<p>but in my panel, I had a control that has a Polyline and other stuff. After Serialization, the Points in the Polyline were delete. but the good thing, I can serialize the Polyline alone, like:<br />
string myPLXAML = uxs.Serialize(MyPanel.PLControl.polyline);<br />
polyline is the name of Polyline, I try to create a public property like </p>
<p>        public Polyline MyPolyline<br />
        {<br />
            get { return polyline; }<br />
            set { polyline=value; }<br />
        }<br />
But doesn&#8217;t work&#8230; any idea????</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Relative hyperlinks with Silverlight navigation by adam</title>
		<link>http://www.davidpoll.com/2009/09/20/relative-hyperlinks-with-silverlight-navigation/comment-page-1/#comment-8465</link>
		<dc:creator>adam</dc:creator>
		<pubDate>Fri, 22 Jul 2011 18:14:45 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2009/09/20/relative-hyperlinks-with-silverlight-navigation/#comment-8465</guid>
		<description>If you add more than one UriMapping object that contains the same value in the Uri property, only the first instance in the collection is used for mapping the URI to a new URI.</description>
		<content:encoded><![CDATA[<p>If you add more than one UriMapping object that contains the same value in the Uri property, only the first instance in the collection is used for mapping the URI to a new URI.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Common Navigation UI and Authorization-driven Sitemaps by Mark</title>
		<link>http://www.davidpoll.com/2010/05/10/common-navigation-ui-and-authorization-driven-sitemaps/comment-page-1/#comment-8456</link>
		<dc:creator>Mark</dc:creator>
		<pubDate>Mon, 18 Jul 2011 15:23:35 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2010/05/10/common-navigation-ui-and-authorization-driven-sitemaps/#comment-8456</guid>
		<description>Not sure if this old post is being monitored, but I had a question.

When you say the langauge issue was fixed, does that mean the fr folder is no longer so there is just the one DLL in the zip, or is the folder there and the SL&amp;B can now handle it?

I have been trying to determine the use of these langauge files. With just fr-FR you do no get them, but with fr you do. It would seem if the resource files are required fr-FR would case the fr one to be added. Thanks in advance for any help.</description>
		<content:encoded><![CDATA[<p>Not sure if this old post is being monitored, but I had a question.</p>
<p>When you say the langauge issue was fixed, does that mean the fr folder is no longer so there is just the one DLL in the zip, or is the folder there and the SL&amp;B can now handle it?</p>
<p>I have been trying to determine the use of these langauge files. With just fr-FR you do no get them, but with fr you do. It would seem if the resource files are required fr-FR would case the fr one to be added. Thanks in advance for any help.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on On-demand loading of assemblies with Silverlight Navigation &#8211; Revisited for Silverlight 4 Beta by Hyacinth Broadchest</title>
		<link>http://www.davidpoll.com/2010/02/01/on-demand-loading-of-assemblies-with-silverlight-navigation-revisited-for-silverlight-4-beta/comment-page-1/#comment-8454</link>
		<dc:creator>Hyacinth Broadchest</dc:creator>
		<pubDate>Mon, 18 Jul 2011 07:59:44 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2010/02/01/on-demand-loading-of-assemblies-with-silverlight-navigation-revisited-for-silverlight-4-beta/#comment-8454</guid>
		<description>Hi David,
Worked brilliantly in my Sliverlight Navigation project.  Then I tried to apply that to a SL Business Applications WCF RIA project, and can&#039;t really get it to work at all.  Symptoms are: It packages all the SLaB dlls into the xap.  And attempting to load one of those new xaps throws an error.  xaps generated under the SL Nav project and copied into /ClientBin still work fine, but these can&#039;t access the data services...

Many thanks,  Hyacinth.</description>
		<content:encoded><![CDATA[<p>Hi David,<br />
Worked brilliantly in my Sliverlight Navigation project.  Then I tried to apply that to a SL Business Applications WCF RIA project, and can&#8217;t really get it to work at all.  Symptoms are: It packages all the SLaB dlls into the xap.  And attempting to load one of those new xaps throws an error.  xaps generated under the SL Nav project and copied into /ClientBin still work fine, but these can&#8217;t access the data services&#8230;</p>
<p>Many thanks,  Hyacinth.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Pitch Perfect now available for free! by kevin Peterson</title>
		<link>http://www.davidpoll.com/2011/02/11/pitch-perfect-now-available-for-free/comment-page-1/#comment-8453</link>
		<dc:creator>kevin Peterson</dc:creator>
		<pubDate>Mon, 18 Jul 2011 03:18:40 +0000</pubDate>
		<guid isPermaLink="false">http://www.davidpoll.com/2011/02/11/pitch-perfect-now-available-for-free/#comment-8453</guid>
		<description>This is great and will be a big help for the impromptu get- togethers always happening around my fire pit. thnx</description>
		<content:encoded><![CDATA[<p>This is great and will be a big help for the impromptu get- togethers always happening around my fire pit. thnx</p>
]]></content:encoded>
	</item>
</channel>
</rss>

