<?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 on: Silverlight Visual Tree Visualizer</title>
	<atom:link href="http://blog.thekieners.com/2009/11/07/silverlight-visual-tree-visualizer/feed/" rel="self" type="application/rss+xml" />
	<link>http://blog.thekieners.com/2009/11/07/silverlight-visual-tree-visualizer/</link>
	<description>Blog of Beat Kiener, containing my experiences, thoughts, comments and questions</description>
	<lastBuildDate>Thu, 26 Jan 2012 02:01:16 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: A ListBox that scrolls by column width &#124; PurpleStoat</title>
		<link>http://blog.thekieners.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-840</link>
		<dc:creator><![CDATA[A ListBox that scrolls by column width &#124; PurpleStoat]]></dc:creator>
		<pubDate>Tue, 18 Jan 2011 09:09:26 +0000</pubDate>
		<guid isPermaLink="false">http://bkiener.wordpress.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-840</guid>
		<description><![CDATA[[...] usual, I made use of the work of others.&#160; First, I used Beat Kiener’s VisualTreeVisualizer to show me what was there.&#160; It was, of course, necessary to wait until the WrapPanel had been [...]]]></description>
		<content:encoded><![CDATA[<p>[...] usual, I made use of the work of others.&nbsp; First, I used Beat Kiener’s VisualTreeVisualizer to show me what was there.&nbsp; It was, of course, necessary to wait until the WrapPanel had been [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: beatkiener</title>
		<link>http://blog.thekieners.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-720</link>
		<dc:creator><![CDATA[beatkiener]]></dc:creator>
		<pubDate>Thu, 26 Aug 2010 19:07:17 +0000</pubDate>
		<guid isPermaLink="false">http://bkiener.wordpress.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-720</guid>
		<description><![CDATA[It works fine with my OutOfBrowser app. Can you send me a simplified version of your project in order that I can debug/test it? 
My email: kiener@glauxsoft.com
Thanks.]]></description>
		<content:encoded><![CDATA[<p>It works fine with my OutOfBrowser app. Can you send me a simplified version of your project in order that I can debug/test it?<br />
My email: <a href="mailto:kiener@glauxsoft.com">kiener@glauxsoft.com</a><br />
Thanks.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://blog.thekieners.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-719</link>
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Wed, 25 Aug 2010 22:15:53 +0000</pubDate>
		<guid isPermaLink="false">http://bkiener.wordpress.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-719</guid>
		<description><![CDATA[hello, thank you for answer, i have triet out the MainPage and some other UIELements,but it stills returns null.
maybe its another problem ?]]></description>
		<content:encoded><![CDATA[<p>hello, thank you for answer, i have triet out the MainPage and some other UIELements,but it stills returns null.<br />
maybe its another problem ?</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: beatkiener</title>
		<link>http://blog.thekieners.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-717</link>
		<dc:creator><![CDATA[beatkiener]]></dc:creator>
		<pubDate>Fri, 20 Aug 2010 05:57:14 +0000</pubDate>
		<guid isPermaLink="false">http://bkiener.wordpress.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-717</guid>
		<description><![CDATA[Hi Thomas,

Thank you for your feedback. 
GetElementByHashCode uses the Application.Current.RootElement to traverse the tree down to find the element with the provided hashcode. When you call GetElementByHashCode before the first layout cycle could happen then the Application.Current.RootElement is not ready.
Therefore I’ve implemented an overloaded version where you can put in the root DependenyObject.
Try this:

Helpers.VisualTreeVisualizer.GetElementByHashCode (this, 33675143)]]></description>
		<content:encoded><![CDATA[<p>Hi Thomas,</p>
<p>Thank you for your feedback.<br />
GetElementByHashCode uses the Application.Current.RootElement to traverse the tree down to find the element with the provided hashcode. When you call GetElementByHashCode before the first layout cycle could happen then the Application.Current.RootElement is not ready.<br />
Therefore I’ve implemented an overloaded version where you can put in the root DependenyObject.<br />
Try this:</p>
<p>Helpers.VisualTreeVisualizer.GetElementByHashCode (this, 33675143)</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Thomas</title>
		<link>http://blog.thekieners.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-716</link>
		<dc:creator><![CDATA[Thomas]]></dc:creator>
		<pubDate>Thu, 19 Aug 2010 20:21:59 +0000</pubDate>
		<guid isPermaLink="false">http://bkiener.wordpress.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-716</guid>
		<description><![CDATA[Nice Idea :) really need that,
but seems not to work in my enviroment :(
i can successfully write the Tree down,
but the function Helpers.VisualTreeVisualizer.GetElementByHashCode(654897) returns null,
even for top most elements.

i am running Silverlight 4.0 in Visual studio 2010.
The Application is an out of browser one...

i called the function in watch window in the constructor after InitializeComponent() and some other initialisation stuff.
maybe i am doing something wrong ?

best regards]]></description>
		<content:encoded><![CDATA[<p>Nice Idea <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' />  really need that,<br />
but seems not to work in my enviroment <img src='http://s0.wp.com/wp-includes/images/smilies/icon_sad.gif' alt=':(' class='wp-smiley' /><br />
i can successfully write the Tree down,<br />
but the function Helpers.VisualTreeVisualizer.GetElementByHashCode(654897) returns null,<br />
even for top most elements.</p>
<p>i am running Silverlight 4.0 in Visual studio 2010.<br />
The Application is an out of browser one&#8230;</p>
<p>i called the function in watch window in the constructor after InitializeComponent() and some other initialisation stuff.<br />
maybe i am doing something wrong ?</p>
<p>best regards</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: beatkiener</title>
		<link>http://blog.thekieners.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-698</link>
		<dc:creator><![CDATA[beatkiener]]></dc:creator>
		<pubDate>Thu, 15 Jul 2010 09:46:13 +0000</pubDate>
		<guid isPermaLink="false">http://bkiener.wordpress.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-698</guid>
		<description><![CDATA[Maybe you have to write the full class name with its namespace.]]></description>
		<content:encoded><![CDATA[<p>Maybe you have to write the full class name with its namespace.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Huan</title>
		<link>http://blog.thekieners.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-697</link>
		<dc:creator><![CDATA[Huan]]></dc:creator>
		<pubDate>Thu, 15 Jul 2010 08:06:05 +0000</pubDate>
		<guid isPermaLink="false">http://bkiener.wordpress.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-697</guid>
		<description><![CDATA[The name &#039;VisualTreeVisualizer&#039; does not exist in the current context]]></description>
		<content:encoded><![CDATA[<p>The name &#8216;VisualTreeVisualizer&#8217; does not exist in the current context</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: beatkiener</title>
		<link>http://blog.thekieners.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-696</link>
		<dc:creator><![CDATA[beatkiener]]></dc:creator>
		<pubDate>Wed, 14 Jul 2010 20:37:24 +0000</pubDate>
		<guid isPermaLink="false">http://bkiener.wordpress.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-696</guid>
		<description><![CDATA[I’ve noticed that sometimes the webserver where I have hosted my download content goes down. 
I have to talk with my hosting provider. Thank you for reporting this issue.]]></description>
		<content:encoded><![CDATA[<p>I’ve noticed that sometimes the webserver where I have hosted my download content goes down.<br />
I have to talk with my hosting provider. Thank you for reporting this issue.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Smith</title>
		<link>http://blog.thekieners.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-695</link>
		<dc:creator><![CDATA[John Smith]]></dc:creator>
		<pubDate>Wed, 14 Jul 2010 20:03:29 +0000</pubDate>
		<guid isPermaLink="false">http://bkiener.wordpress.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-695</guid>
		<description><![CDATA[I just retried the link and it worked. Thank you for your code.]]></description>
		<content:encoded><![CDATA[<p>I just retried the link and it worked. Thank you for your code.</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: John Smith</title>
		<link>http://blog.thekieners.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-694</link>
		<dc:creator><![CDATA[John Smith]]></dc:creator>
		<pubDate>Wed, 14 Jul 2010 17:58:14 +0000</pubDate>
		<guid isPermaLink="false">http://bkiener.wordpress.com/2009/11/07/silverlight-visual-tree-visualizer/#comment-694</guid>
		<description><![CDATA[Hi. I&#039;d like to try your visualizer but the download link seems to be dead. Could you restore it or mail me the project?]]></description>
		<content:encoded><![CDATA[<p>Hi. I&#8217;d like to try your visualizer but the download link seems to be dead. Could you restore it or mail me the project?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

