<?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: Stacking the deck with the WPF StackPanel</title>
	<atom:link href="http://arcanecode.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/feed/" rel="self" type="application/rss+xml" />
	<link>http://arcanecode.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/</link>
	<description>Making Microsoft .Net Development Magical</description>
	<lastBuildDate>Tue, 07 Feb 2012 16:57:33 +0000</lastBuildDate>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
	<item>
		<title>By: Laveta Klitz</title>
		<link>http://arcanecode.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-27495</link>
		<dc:creator><![CDATA[Laveta Klitz]]></dc:creator>
		<pubDate>Fri, 12 Feb 2010 22:28:03 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-27495</guid>
		<description><![CDATA[Very informative text. I&#039;ve found your blog via Yahoo and I&#039;m really glad about the information you provide in your articles. Btw your blogs layout is really broken on the Chrome browser. Would be cool if you could fix that. Anyhow keep up the great work!]]></description>
		<content:encoded><![CDATA[<p>Very informative text. I&#8217;ve found your blog via Yahoo and I&#8217;m really glad about the information you provide in your articles. Btw your blogs layout is really broken on the Chrome browser. Would be cool if you could fix that. Anyhow keep up the great work!</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: sandy</title>
		<link>http://arcanecode.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-27057</link>
		<dc:creator><![CDATA[sandy]]></dc:creator>
		<pubDate>Sat, 26 Sep 2009 16:42:19 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-27057</guid>
		<description><![CDATA[is it possible to add and remove controls programmitically?
i want to add combo box based on user input and remove it based on user input. 

thank u,
sandy]]></description>
		<content:encoded><![CDATA[<p>is it possible to add and remove controls programmitically?<br />
i want to add combo box based on user input and remove it based on user input. </p>
<p>thank u,<br />
sandy</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Coulson</title>
		<link>http://arcanecode.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-26180</link>
		<dc:creator><![CDATA[Eric Coulson]]></dc:creator>
		<pubDate>Sat, 22 Nov 2008 20:30:28 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-26180</guid>
		<description><![CDATA[I was forgetting to programatically set the RenderTransformOrigin so the TextBock would rotate around the proper origin.

            button = new Button();
            TextBlock tb = new TextBlock();
            tb.Text = name;
            tb.RenderTransformOrigin = new Point(.5,.5);
            RotateTransform rt = new RotateTransform();
            rt.Angle = 90;
            tb.RenderTransform = rt;    
            button .Content = tb;
            stackPanel.Children.Add(button);]]></description>
		<content:encoded><![CDATA[<p>I was forgetting to programatically set the RenderTransformOrigin so the TextBock would rotate around the proper origin.</p>
<p>            button = new Button();<br />
            TextBlock tb = new TextBlock();<br />
            tb.Text = name;<br />
            tb.RenderTransformOrigin = new Point(.5,.5);<br />
            RotateTransform rt = new RotateTransform();<br />
            rt.Angle = 90;<br />
            tb.RenderTransform = rt;<br />
            button .Content = tb;<br />
            stackPanel.Children.Add(button);</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Coulson</title>
		<link>http://arcanecode.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-26179</link>
		<dc:creator><![CDATA[Eric Coulson]]></dc:creator>
		<pubDate>Sat, 22 Nov 2008 18:19:48 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-26179</guid>
		<description><![CDATA[I meant to say - horizontal stack panel of 90 degree buttons.

Thanks, Eric]]></description>
		<content:encoded><![CDATA[<p>I meant to say &#8211; horizontal stack panel of 90 degree buttons.</p>
<p>Thanks, Eric</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Eric Coulson</title>
		<link>http://arcanecode.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-26178</link>
		<dc:creator><![CDATA[Eric Coulson]]></dc:creator>
		<pubDate>Sat, 22 Nov 2008 18:18:06 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-26178</guid>
		<description><![CDATA[This helped in my search to have a vertical stack panel of 90 degree rotated buttons - now I know why the buttons are outside the stack panel.  However - I am trying to do below programatically.  I have crated the TextBlock but still having trouble linking to TextBlock to buttto.  Tried putting  TextBlock as content of button but that did not work.  

-Eric

      
        
          
            
          
          One More Button
        
      ]]></description>
		<content:encoded><![CDATA[<p>This helped in my search to have a vertical stack panel of 90 degree rotated buttons &#8211; now I know why the buttons are outside the stack panel.  However &#8211; I am trying to do below programatically.  I have crated the TextBlock but still having trouble linking to TextBlock to buttto.  Tried putting  TextBlock as content of button but that did not work.  </p>
<p>-Eric</p>
<p>          One More Button</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: yvisek</title>
		<link>http://arcanecode.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-25927</link>
		<dc:creator><![CDATA[yvisek]]></dc:creator>
		<pubDate>Tue, 23 Sep 2008 23:03:52 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-25927</guid>
		<description><![CDATA[thanks for it :)]]></description>
		<content:encoded><![CDATA[<p>thanks for it <img src='http://s0.wp.com/wp-includes/images/smilies/icon_smile.gif' alt=':)' class='wp-smiley' /> </p>
]]></content:encoded>
	</item>
	<item>
		<title>By: Adding WPF Controls Progrrammatically &#171; Arcane Code</title>
		<link>http://arcanecode.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-12913</link>
		<dc:creator><![CDATA[Adding WPF Controls Progrrammatically &#171; Arcane Code]]></dc:creator>
		<pubDate>Fri, 07 Sep 2007 06:03:22 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-12913</guid>
		<description><![CDATA[[...] September 7th, 2007 &#8212; arcanecode   On August 29th I wrote a posting about the StackPanel (http://arcanecode.wordpress.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/). A commentor asked “how do you add controls programmatically?” Good question, and it turns out [...]]]></description>
		<content:encoded><![CDATA[<p>[...] September 7th, 2007 &#8212; arcanecode   On August 29th I wrote a posting about the StackPanel (<a href="http://arcanecode.wordpress.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/" rel="nofollow">http://arcanecode.wordpress.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/</a>). A commentor asked “how do you add controls programmatically?” Good question, and it turns out [...]</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arcanecode</title>
		<link>http://arcanecode.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-12863</link>
		<dc:creator><![CDATA[arcanecode]]></dc:creator>
		<pubDate>Thu, 06 Sep 2007 02:08:41 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-12863</guid>
		<description><![CDATA[OK xpendo, I found a solution for you. I&#039;ll have a new posting with the solution in the blog this Friday.

   Arcane]]></description>
		<content:encoded><![CDATA[<p>OK xpendo, I found a solution for you. I&#8217;ll have a new posting with the solution in the blog this Friday.</p>
<p>   Arcane</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: arcanecode</title>
		<link>http://arcanecode.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-12843</link>
		<dc:creator><![CDATA[arcanecode]]></dc:creator>
		<pubDate>Wed, 05 Sep 2007 12:08:58 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-12843</guid>
		<description><![CDATA[Good question, most of my research so far has been from the XAML end. Let me look into it and I&#039;ll have something in a day or two.

   Arcane]]></description>
		<content:encoded><![CDATA[<p>Good question, most of my research so far has been from the XAML end. Let me look into it and I&#8217;ll have something in a day or two.</p>
<p>   Arcane</p>
]]></content:encoded>
	</item>
	<item>
		<title>By: xpendo</title>
		<link>http://arcanecode.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-12836</link>
		<dc:creator><![CDATA[xpendo]]></dc:creator>
		<pubDate>Wed, 05 Sep 2007 10:37:46 +0000</pubDate>
		<guid isPermaLink="false">http://arcanecode.wordpress.com/2007/08/29/stacking-the-deck-with-the-wpf-stackpanel/#comment-12836</guid>
		<description><![CDATA[hi,

how can i add controls into stackpanel programmatically?]]></description>
		<content:encoded><![CDATA[<p>hi,</p>
<p>how can i add controls into stackpanel programmatically?</p>
]]></content:encoded>
	</item>
</channel>
</rss>

