<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	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:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>ForDevs &#187; WPF</title>
	<atom:link href="http://www.fordevs.com/category/programming/dotnet/wpf/feed" rel="self" type="application/rss+xml" />
	<link>http://www.fordevs.com</link>
	<description>We Learn We Share</description>
	<lastBuildDate>Tue, 25 May 2010 17:19:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0</generator>
		<item>
		<title>How to bring the cursor to the end of text in the textbox control &#8211; WPF C#</title>
		<link>http://www.fordevs.com/2010/03/how-to-bring-the-cursor-to-the-end-of-text-in-the-textbox-control-wpf-c.html</link>
		<comments>http://www.fordevs.com/2010/03/how-to-bring-the-cursor-to-the-end-of-text-in-the-textbox-control-wpf-c.html#comments</comments>
		<pubDate>Tue, 23 Mar 2010 13:56:29 +0000</pubDate>
		<dc:creator>joy</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[C]]></category>
		<category><![CDATA[Textbox]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=704</guid>
		<description><![CDATA[Normally if we focus a textbox control the cursor would be in the start of the textbox.But when there is text already in the textbox it would be annoying if the cursor is in start.It would be better if the cursor is at the end of content in texbox. Thus to position the cursor at [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2010/03/how-to-bring-the-cursor-to-the-end-of-text-in-the-textbox-control-wpf-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How to Text Wrap a Label in WPF?</title>
		<link>http://www.fordevs.com/2010/01/how-to-text-wrap-a-label-in-wpf.html</link>
		<comments>http://www.fordevs.com/2010/01/how-to-text-wrap-a-label-in-wpf.html#comments</comments>
		<pubDate>Wed, 27 Jan 2010 05:02:45 +0000</pubDate>
		<dc:creator>joy</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=680</guid>
		<description><![CDATA[WPF does not allow text wrapping for label control.Thus to wrap a label with a fixed width,we have to place the TextBlock control inside the label control and set its TextWrapping property to &#8220;Wrap&#8221;. &#60;Label Width=&#8221;50&#8243;&#62; &#60;TextBlock TextWrapping=&#8221;Wrap&#8221;&#62; I am label with width 50&#60;/TextBlock&#62; &#60;/Label&#62;]]></description>
		<wfw:commentRss>http://www.fordevs.com/2010/01/how-to-text-wrap-a-label-in-wpf.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>How To Call a Button Click From Another Button in c#</title>
		<link>http://www.fordevs.com/2009/11/how-to-call-a-button-click-from-another-button-in-c.html</link>
		<comments>http://www.fordevs.com/2009/11/how-to-call-a-button-click-from-another-button-in-c.html#comments</comments>
		<pubDate>Mon, 09 Nov 2009 06:47:34 +0000</pubDate>
		<dc:creator>joy</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[Button]]></category>
		<category><![CDATA[Button Click]]></category>
		<category><![CDATA[Button Event]]></category>
		<category><![CDATA[C# button]]></category>
		<category><![CDATA[Call Button]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=619</guid>
		<description><![CDATA[If there is a requirement for calling a button click event from another button in c#, there is a easy way to do.We just need to call the PerformClick Method of the button to be fired. private void button1_Click&#40;object sender, EventArgs e&#41; &#123; button2.PerformClick&#40;&#41;; &#125; &#160; private void button2_Click&#40;object sender, EventArgs e&#41; &#123; System.Windows.Forms.MessageBox.Show&#40;&#34;I am [...]]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/11/how-to-call-a-button-click-from-another-button-in-c.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Make Textbox Number Only &#8211; WPF</title>
		<link>http://www.fordevs.com/2009/09/make-textbox-number-only-wpf.html</link>
		<comments>http://www.fordevs.com/2009/09/make-textbox-number-only-wpf.html#comments</comments>
		<pubDate>Mon, 28 Sep 2009 17:08:56 +0000</pubDate>
		<dc:creator>joy</dc:creator>
				<category><![CDATA[C#]]></category>
		<category><![CDATA[WPF]]></category>
		<category><![CDATA[Textbox]]></category>

		<guid isPermaLink="false">http://www.fordevs.com/?p=572</guid>
		<description><![CDATA[Coding : private void txt_PreviewTextInput&#40;object sender, TextCompositionEventArgs e&#41; &#123; e.Handled = !ValidNumeric&#40;e.Text&#41;; base.OnPreviewTextInput&#40;e&#41;; &#125; &#160; bool ValidNumeric&#40;string str&#41; &#123; bool ret = true; &#160; int l = str.Length; for &#40;int i = 0; i &#38;lt; l; i++&#41; &#123; char ch = str&#91;i&#93;; ret &#38;= Char.IsDigit&#40;ch&#41;; &#125; &#160; return ret; &#125; Thanks dedjo]]></description>
		<wfw:commentRss>http://www.fordevs.com/2009/09/make-textbox-number-only-wpf.html/feed</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
