<?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/"
	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>Comments for Andrew Smith</title>
	<atom:link href="http://agsmith.wordpress.com/comments/feed/" rel="self" type="application/rss+xml" />
	<link>http://agsmith.wordpress.com</link>
	<description>Random Thoughts about C#, VS, WinForms, WPF and .NET in General</description>
	<lastBuildDate>Wed, 25 Nov 2009 15:34:54 +0000</lastBuildDate>
	<generator>http://wordpress.com/</generator>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
		<item>
		<title>Comment on About by Madhu</title>
		<link>http://agsmith.wordpress.com/about/#comment-232</link>
		<dc:creator>Madhu</dc:creator>
		<pubDate>Wed, 25 Nov 2009 15:34:54 +0000</pubDate>
		<guid isPermaLink="false">#comment-232</guid>
		<description>Hi Pavan,

I am follower of your site has a great articles. I am designer and just getting into Blend/WP. I have a challenge that I need to create a control in Blend/WPF somethinf like this URL
http://www.google.com/finance?q=hal
When you move the Slider Control and thumb the graph changes.

Can you please help me in this as I need this very urgently.

Regards,
Madhu</description>
		<content:encoded><![CDATA[<p>Hi Pavan,</p>
<p>I am follower of your site has a great articles. I am designer and just getting into Blend/WP. I have a challenge that I need to create a control in Blend/WPF somethinf like this URL<br />
<a href="http://www.google.com/finance?q=hal" rel="nofollow">http://www.google.com/finance?q=hal</a><br />
When you move the Slider Control and thumb the graph changes.</p>
<p>Can you please help me in this as I need this very urgently.</p>
<p>Regards,<br />
Madhu</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Path Data, Prefixes and Known Colors by Terry Clancy</title>
		<link>http://agsmith.wordpress.com/2008/09/24/path-data-prefixes-and-known-colors/#comment-230</link>
		<dc:creator>Terry Clancy</dc:creator>
		<pubDate>Tue, 01 Sep 2009 01:45:29 +0000</pubDate>
		<guid isPermaLink="false">http://agsmith.wordpress.com/2008/09/24/path-data-prefixes-and-known-colors/#comment-230</guid>
		<description>Regarding relative Path Markup Notation as described here http://msdn.microsoft.com/en-us/library/ms752293.aspx .

Using the Path Markup Syntax you enter each command by using either an uppercase or a lowercase letter: uppercase letters denote absolute values and lowercase letters denote relative values: the control points for that segment are relative to the end point of the preceding example.   Using this Syntax I have created the following Path Geometry.

   

However I want the Starting Point (100,100 in this example) to be databound as I want to start it at a point which I calculate to be the center of the   .

I assume to do this I can either Databind the entire Figures string or cease using the abbreviated Path Markup Syntax and define the  in explicit XAML.

So I am trying to define the  in explicity XAML and here is my question:

QUESTION: In defining the  above in explicit XAML, how do I specify the use of relative values, or offsets,  ie for example that  the control points for that segment are relative to the end point of the preceding example.</description>
		<content:encoded><![CDATA[<p>Regarding relative Path Markup Notation as described here <a href="http://msdn.microsoft.com/en-us/library/ms752293.aspx" rel="nofollow">http://msdn.microsoft.com/en-us/library/ms752293.aspx</a> .</p>
<p>Using the Path Markup Syntax you enter each command by using either an uppercase or a lowercase letter: uppercase letters denote absolute values and lowercase letters denote relative values: the control points for that segment are relative to the end point of the preceding example.   Using this Syntax I have created the following Path Geometry.</p>
<p>However I want the Starting Point (100,100 in this example) to be databound as I want to start it at a point which I calculate to be the center of the   .</p>
<p>I assume to do this I can either Databind the entire Figures string or cease using the abbreviated Path Markup Syntax and define the  in explicit XAML.</p>
<p>So I am trying to define the  in explicity XAML and here is my question:</p>
<p>QUESTION: In defining the  above in explicit XAML, how do I specify the use of relative values, or offsets,  ie for example that  the control points for that segment are relative to the end point of the preceding example.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on ElementName Binding In ToolTips (Borrowing a NameScope) by Echilon</title>
		<link>http://agsmith.wordpress.com/2008/07/17/elementname-binding-in-tooltips-borrowing-a-namescope/#comment-220</link>
		<dc:creator>Echilon</dc:creator>
		<pubDate>Thu, 25 Jun 2009 16:07:16 +0000</pubDate>
		<guid isPermaLink="false">http://agsmith.wordpress.com/?p=25#comment-220</guid>
		<description>Excellent post. I was starting to think I&#039;d just have to hard code the property.</description>
		<content:encoded><![CDATA[<p>Excellent post. I was starting to think I&#8217;d just have to hard code the property.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing Enum members in Xaml by Parag Shravagi</title>
		<link>http://agsmith.wordpress.com/2008/09/19/accessing-enum-members-in-xaml/#comment-202</link>
		<dc:creator>Parag Shravagi</dc:creator>
		<pubDate>Mon, 11 May 2009 03:37:59 +0000</pubDate>
		<guid isPermaLink="false">http://agsmith.wordpress.com/2008/09/19/accessing-enum-members-in-xaml/#comment-202</guid>
		<description>I am facing a strange problem. 
I want to define an enumeration with a description attribute attached to every member of enum.
I want to bind the enum with a comboBox in such a way that the combo box displays the attribute values instead of original enum members.
I would like to define a generic template/solution as I have multiple combo boxes which each of which must be bound to seperate enums.
Can anybody please help me in writing this?
Thanks in advance</description>
		<content:encoded><![CDATA[<p>I am facing a strange problem.<br />
I want to define an enumeration with a description attribute attached to every member of enum.<br />
I want to bind the enum with a comboBox in such a way that the combo box displays the attribute values instead of original enum members.<br />
I would like to define a generic template/solution as I have multiple combo boxes which each of which must be bound to seperate enums.<br />
Can anybody please help me in writing this?<br />
Thanks in advance</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by cplotts</title>
		<link>http://agsmith.wordpress.com/about/#comment-180</link>
		<dc:creator>cplotts</dc:creator>
		<pubDate>Sun, 08 Mar 2009 01:39:01 +0000</pubDate>
		<guid isPermaLink="false">#comment-180</guid>
		<description>Hey Andrew,

Very curious about your response to a WPF forum post about memory leaks caused by DynamicResource and/or StaticResource:

http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/b97a5f83-5394-430e-9a78-9d3a957e3537/

Would love to converse with you about over email (its my first name followed by my last name (Plotts) at gmail),
Cory</description>
		<content:encoded><![CDATA[<p>Hey Andrew,</p>
<p>Very curious about your response to a WPF forum post about memory leaks caused by DynamicResource and/or StaticResource:</p>
<p><a href="http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/b97a5f83-5394-430e-9a78-9d3a957e3537/" rel="nofollow">http://social.msdn.microsoft.com/Forums/en-US/wpf/thread/b97a5f83-5394-430e-9a78-9d3a957e3537/</a></p>
<p>Would love to converse with you about over email (its my first name followed by my last name (Plotts) at gmail),<br />
Cory</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PropertyDescriptor AddValueChanged Alternative by jon</title>
		<link>http://agsmith.wordpress.com/2008/04/07/propertydescriptor-addvaluechanged-alternative/#comment-178</link>
		<dc:creator>jon</dc:creator>
		<pubDate>Mon, 23 Feb 2009 15:18:11 +0000</pubDate>
		<guid isPermaLink="false">http://agsmith.wordpress.com/2008/04/07/propertydescriptor-addvaluechanged-alternative/#comment-178</guid>
		<description>If you are just replacing the AddValueChanged to use this, remember you will need a reference to the notifier, the previous way (DependencyPropertyDescriptor) did as it has an internal hash map.  maybe save someone a few minutes</description>
		<content:encoded><![CDATA[<p>If you are just replacing the AddValueChanged to use this, remember you will need a reference to the notifier, the previous way (DependencyPropertyDescriptor) did as it has an internal hash map.  maybe save someone a few minutes</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PropertyDescriptor AddValueChanged Alternative by jon</title>
		<link>http://agsmith.wordpress.com/2008/04/07/propertydescriptor-addvaluechanged-alternative/#comment-177</link>
		<dc:creator>jon</dc:creator>
		<pubDate>Mon, 23 Feb 2009 15:15:36 +0000</pubDate>
		<guid isPermaLink="false">http://agsmith.wordpress.com/2008/04/07/propertydescriptor-addvaluechanged-alternative/#comment-177</guid>
		<description>If you change this line

if (null != notifier.ValueChanged)
notifier.ValueChanged(notifier, EventArgs.Empty);

to this, you will get the correct sender in the event

if (null != notifier.ValueChanged)
notifier.ValueChanged(notifier.PropertySource, EventArgs.Empty);</description>
		<content:encoded><![CDATA[<p>If you change this line</p>
<p>if (null != notifier.ValueChanged)<br />
notifier.ValueChanged(notifier, EventArgs.Empty);</p>
<p>to this, you will get the correct sender in the event</p>
<p>if (null != notifier.ValueChanged)<br />
notifier.ValueChanged(notifier.PropertySource, EventArgs.Empty);</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on Accessing Enum members in Xaml by Jason</title>
		<link>http://agsmith.wordpress.com/2008/09/19/accessing-enum-members-in-xaml/#comment-175</link>
		<dc:creator>Jason</dc:creator>
		<pubDate>Sat, 14 Feb 2009 00:04:51 +0000</pubDate>
		<guid isPermaLink="false">http://agsmith.wordpress.com/2008/09/19/accessing-enum-members-in-xaml/#comment-175</guid>
		<description>This seems to work OK, except I get an error - No constructor fro type &#039;EnumListExtension&#039; has 1 parameter.  Compiles and runs fine.  

If I use EnumType={x:Type local:MyEnum} (instead of the constructor version) then it doesn&#039;t even compile and run.  I get the error: Unknown property &#039;EnumType&#039; for type &#039;MS.Internal.Markup.MarkupExtensionParser+UnknownMarkupExtension&#039; encountered while parsing a Markup Extension. Line 86 Position 27.	

Any ideas?  Has anyone else encountered this problem?  

I&#039;m using VS 2008 Pro SP1.</description>
		<content:encoded><![CDATA[<p>This seems to work OK, except I get an error &#8211; No constructor fro type &#8216;EnumListExtension&#8217; has 1 parameter.  Compiles and runs fine.  </p>
<p>If I use EnumType={x:Type local:MyEnum} (instead of the constructor version) then it doesn&#8217;t even compile and run.  I get the error: Unknown property &#8216;EnumType&#8217; for type &#8216;MS.Internal.Markup.MarkupExtensionParser+UnknownMarkupExtension&#8217; encountered while parsing a Markup Extension. Line 86 Position 27.	</p>
<p>Any ideas?  Has anyone else encountered this problem?  </p>
<p>I&#8217;m using VS 2008 Pro SP1.</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on PropertyDescriptor AddValueChanged Alternative by Bob</title>
		<link>http://agsmith.wordpress.com/2008/04/07/propertydescriptor-addvaluechanged-alternative/#comment-174</link>
		<dc:creator>Bob</dc:creator>
		<pubDate>Wed, 03 Dec 2008 20:57:14 +0000</pubDate>
		<guid isPermaLink="false">http://agsmith.wordpress.com/2008/04/07/propertydescriptor-addvaluechanged-alternative/#comment-174</guid>
		<description>Hey Andrew, I had been looking all day for a replacement for WPF&#039;s DependencyPropertyDescriptor and I came across this article.  Unfortunately it looks like they removed the Bindable() attribute from the final Silverlight release - do you have an update to this code that works in the final bits?
Thanks,
Bob</description>
		<content:encoded><![CDATA[<p>Hey Andrew, I had been looking all day for a replacement for WPF&#8217;s DependencyPropertyDescriptor and I came across this article.  Unfortunately it looks like they removed the Bindable() attribute from the final Silverlight release &#8211; do you have an update to this code that works in the final bits?<br />
Thanks,<br />
Bob</p>
]]></content:encoded>
	</item>
	<item>
		<title>Comment on About by Stanley Goldman</title>
		<link>http://agsmith.wordpress.com/about/#comment-173</link>
		<dc:creator>Stanley Goldman</dc:creator>
		<pubDate>Sun, 16 Nov 2008 01:51:10 +0000</pubDate>
		<guid isPermaLink="false">#comment-173</guid>
		<description>Hey,

I&#039;m trying to find a link to download Mole for Visual Studio.
The link on CodeProject is dead.
I couldn&#039;t find an email address for Josh or Karl.

Thanks if you can help me out.
Stanley</description>
		<content:encoded><![CDATA[<p>Hey,</p>
<p>I&#8217;m trying to find a link to download Mole for Visual Studio.<br />
The link on CodeProject is dead.<br />
I couldn&#8217;t find an email address for Josh or Karl.</p>
<p>Thanks if you can help me out.<br />
Stanley</p>
]]></content:encoded>
	</item>
</channel>
</rss>
