<?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/"
	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>2,000 Things You Should Know About WPF</title>
	<atom:link href="http://wpf.2000things.com/feed/" rel="self" type="application/rss+xml" />
	<link>http://wpf.2000things.com</link>
	<description>Everything a WPF Developer Needs to Know, in Bite-Sized Chunks</description>
	<lastBuildDate>Fri, 24 May 2013 14:10:10 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.com/</generator>
<cloud domain='wpf.2000things.com' port='80' path='/?rsscloud=notify' registerProcedure='' protocol='http-post' />
<image>
		<url>http://1.gravatar.com/blavatar/96cfc0c116be8a3fdedb05f3d276adb4?s=96&#038;d=http%3A%2F%2Fs2.wp.com%2Fi%2Fbuttonw-com.png</url>
		<title>2,000 Things You Should Know About WPF</title>
		<link>http://wpf.2000things.com</link>
	</image>
	<atom:link rel="search" type="application/opensearchdescription+xml" href="http://wpf.2000things.com/osd.xml" title="2,000 Things You Should Know About WPF" />
	<atom:link rel='hub' href='http://wpf.2000things.com/?pushpress=hub'/>
		<item>
		<title>#827 &#8211; Overriding the Cursor Properties of Child Elements</title>
		<link>http://wpf.2000things.com/2013/05/24/827-overriding-the-cursor-properties-of-child-elements/</link>
		<comments>http://wpf.2000things.com/2013/05/24/827-overriding-the-cursor-properties-of-child-elements/#comments</comments>
		<pubDate>Fri, 24 May 2013 11:00:58 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Cursor]]></category>
		<category><![CDATA[ForceCursor]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://wpf.2000things.com/?p=7087</guid>
		<description><![CDATA[A child FrameworkElement can set a Cursor value that overrides the current Cursor value set by a parent (or ancestor) element.  This new Cursor value then applies in the element where it is set and any of its own child elements. A parent/ancestor FrameworkElement can, however, force all child elements to use a particular cursor, by setting the ForceCursor property to [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7087&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>A <a href="http://wp.me/pZhye-1Qf">child <strong>FrameworkElement</strong> can set a <strong>Cursor</strong></a> value that overrides the current <strong>Cursor</strong> value set by a parent (or ancestor) element.  This new <strong>Cursor</strong> value then applies in the element where it is set and any of its own child elements.</p>
<p>A parent/ancestor <strong>FrameworkElement</strong> can, however, force all child elements to use a particular cursor, by setting the <strong>ForceCursor</strong> property to <strong>true</strong>.  This overrides any <strong>Cursor</strong> property values that the child elements might set.</p>
<p>In the example below, the second <strong>Button</strong> sets its <strong>Cursor</strong> property to <strong>Hand, </strong>but this value is overridden because the parent <strong>StackPanel</strong> sets the <strong>ForceCursor</strong> property to <strong>true</strong>.</p>
<pre class="brush: xml; title: ; notranslate">
    &lt;StackPanel Cursor=&quot;Hand&quot; ForceCursor=&quot;True&quot;&gt;
        &lt;Label Content=&quot;Ad eundum quo nemo ante iit&quot;
               Margin=&quot;5&quot;
               Background=&quot;LightCoral&quot;/&gt;
        &lt;Label Content=&quot;Noli habere bovis, vir&quot;
               Margin=&quot;5&quot;
               Background=&quot;DarkSeaGreen&quot;/&gt;
        &lt;StackPanel Orientation=&quot;Horizontal&quot;
                    HorizontalAlignment=&quot;Center&quot;&gt;
            &lt;Button Content=&quot;Veni, Vidi&quot;
                    Padding=&quot;10,5&quot; Margin=&quot;10&quot;/&gt;
            &lt;Button Content=&quot;Dormivi&quot;
                    Cursor=&quot;Wait&quot;
                    Padding=&quot;10,5&quot; Margin=&quot;10&quot;/&gt;
        &lt;/StackPanel&gt;
    &lt;/StackPanel&gt;
</pre>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/827-001.png"><img class="alignnone size-full wp-image-7089" alt="827-001" src="http://2000thingswpf.files.wordpress.com/2013/05/827-001.png?w=630"   /></a><br />
<a href="http://2000thingswpf.files.wordpress.com/2013/05/827-002.png"><img class="alignnone size-full wp-image-7090" alt="827-002" src="http://2000thingswpf.files.wordpress.com/2013/05/827-002.png?w=630"   /></a></p>
<br />Filed under: <a href='http://wpf.2000things.com/category/miscellaneous/'>Miscellaneous</a> Tagged: <a href='http://wpf.2000things.com/tag/cursor/'>Cursor</a>, <a href='http://wpf.2000things.com/tag/forcecursor/'>ForceCursor</a>, <a href='http://wpf.2000things.com/tag/miscellaneous/'>Miscellaneous</a>, <a href='http://wpf.2000things.com/tag/wpf/'>WPF</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/2000thingswpf.wordpress.com/7087/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/2000thingswpf.wordpress.com/7087/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7087&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wpf.2000things.com/2013/05/24/827-overriding-the-cursor-properties-of-child-elements/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8922e4d5254d602ba3ed32dd073b5a4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spsexton</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/827-001.png" medium="image">
			<media:title type="html">827-001</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/827-002.png" medium="image">
			<media:title type="html">827-002</media:title>
		</media:content>
	</item>
		<item>
		<title>#826 &#8211; Lower-Level Elements Can Have Different Cursor</title>
		<link>http://wpf.2000things.com/2013/05/23/826-lower-level-elements-can-have-different-cursor/</link>
		<comments>http://wpf.2000things.com/2013/05/23/826-lower-level-elements-can-have-different-cursor/#comments</comments>
		<pubDate>Thu, 23 May 2013 11:00:57 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Cursor]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://wpf.2000things.com/?p=7083</guid>
		<description><![CDATA[A Cursor set on a top-level FrameworkElement will also be used on all elements within the parent element&#8217;s logical tree.  All lower-level elements will show the same cursor when the user hovers over the element. You can, however, set a Cursor on a top-level element and then set a different value for Cursor on the lower-level element.  The top-level Cursor [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7083&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>A <a href="http://wp.me/pZhye-1Q1"><strong>Cursor</strong> set on a top-level <strong>FrameworkElement</strong></a> will also be used on all elements within the parent element&#8217;s logical tree.  All lower-level elements will show the same cursor when the user hovers over the element.</p>
<p>You can, however, set a <strong>Cursor</strong> on a top-level element and then set a different value for <strong>Cursor</strong> on the lower-level element.  The top-level <strong>Cursor </strong>will<strong> </strong>be used for all descendants of the top-level element except for the one that explicitly sets a different cursor.</p>
<pre class="brush: xml; title: ; notranslate">
    &lt;StackPanel Cursor=&quot;Hand&quot;&gt;
        &lt;Label Content=&quot;Ad eundum quo nemo ante iit&quot;
               Margin=&quot;5&quot;
               Background=&quot;LightCoral&quot;/&gt;
        &lt;Label Content=&quot;Noli habere bovis, vir&quot;
               Margin=&quot;5&quot;
               Background=&quot;DarkSeaGreen&quot;/&gt;
        &lt;StackPanel Orientation=&quot;Horizontal&quot;
                    HorizontalAlignment=&quot;Center&quot;&gt;
            &lt;Button Content=&quot;Veni, Vidi&quot;
                    Padding=&quot;10,5&quot; Margin=&quot;10&quot;/&gt;
            &lt;Button Content=&quot;Dormivi&quot;
                    Cursor=&quot;Wait&quot;
                    Padding=&quot;10,5&quot; Margin=&quot;10&quot;/&gt;
        &lt;/StackPanel&gt;
    &lt;/StackPanel&gt;
</pre>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/826-001.png"><img class="alignnone size-full wp-image-7084" alt="826-001" src="http://2000thingswpf.files.wordpress.com/2013/05/826-001.png?w=630"   /></a><br />
<a href="http://2000thingswpf.files.wordpress.com/2013/05/826-002.png"><img class="alignnone size-full wp-image-7085" alt="826-002" src="http://2000thingswpf.files.wordpress.com/2013/05/826-002.png?w=630"   /></a></p>
<br />Filed under: <a href='http://wpf.2000things.com/category/miscellaneous/'>Miscellaneous</a> Tagged: <a href='http://wpf.2000things.com/tag/cursor/'>Cursor</a>, <a href='http://wpf.2000things.com/tag/miscellaneous/'>Miscellaneous</a>, <a href='http://wpf.2000things.com/tag/wpf/'>WPF</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/2000thingswpf.wordpress.com/7083/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/2000thingswpf.wordpress.com/7083/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7083&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wpf.2000things.com/2013/05/23/826-lower-level-elements-can-have-different-cursor/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8922e4d5254d602ba3ed32dd073b5a4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spsexton</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/826-001.png" medium="image">
			<media:title type="html">826-001</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/826-002.png" medium="image">
			<media:title type="html">826-002</media:title>
		</media:content>
	</item>
		<item>
		<title>#825 &#8211; Two Way Binding for a CheckBox</title>
		<link>http://wpf.2000things.com/2013/05/22/825-two-way-binding-for-a-checkbox/</link>
		<comments>http://wpf.2000things.com/2013/05/22/825-two-way-binding-for-a-checkbox/#comments</comments>
		<pubDate>Wed, 22 May 2013 11:00:53 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Data Binding]]></category>
		<category><![CDATA[CheckBox]]></category>
		<category><![CDATA[TwoWay]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://wpf.2000things.com/?p=7080</guid>
		<description><![CDATA[You can bind the IsChecked property of a CheckBox to a boolean variable, so that the variable will always reflect the current value of the CheckBox in the user interface. You can also do two-way binding, where the boolean variable changes when the user toggles the CheckBox, but the CheckBox also toggles when the value of the variable changes. [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7080&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>You can <a href="http://wpf.2000things.com/2011/07/27/351-binding-a-checkboxs-ischecked-property-to-a-boolean-variable/">bind the <strong>IsChecked </strong>property of a </a><strong><a href="http://wpf.2000things.com/2011/07/27/351-binding-a-checkboxs-ischecked-property-to-a-boolean-variable/">CheckBox</a> </strong>to a boolean variable, so that the variable will always reflect the current value of the CheckBox in the user interface.</p>
<p>You can also do two-way binding, where the boolean variable changes when the user toggles the CheckBox, but the CheckBox also toggles when the value of the variable changes.</p>
<pre class="brush: xml; title: ; notranslate">
        &lt;Label Content=&quot;Things my dog can do:&quot;/&gt;
        &lt;CheckBox Content=&quot;Sit&quot; IsChecked=&quot;{Binding CanSit, Mode=TwoWay}&quot;/&gt;
        &lt;CheckBox Content=&quot;Stay&quot; IsChecked=&quot;{Binding CanStay, Mode=TwoWay}&quot;/&gt;
        &lt;StackPanel Orientation=&quot;Horizontal&quot; HorizontalAlignment=&quot;Center&quot;&gt;
            &lt;Button Content=&quot;Report State&quot; Click=&quot;btnReportState_Click&quot;
                    Margin=&quot;5&quot;/&gt;
            &lt;Button Content=&quot;Change State&quot; Click=&quot;btnChangeState_Click&quot;
                    Margin=&quot;5&quot;/&gt;
        &lt;/StackPanel&gt;
</pre>
<p>Code-behind:</p>
<pre class="brush: csharp; title: ; notranslate">
    public partial class MainWindow : Window, INotifyPropertyChanged
    {
        private bool canSit;
        public bool CanSit
        {
            get { return canSit; }
            set
            {
                canSit = value;
                RaisePropertyChanged(&quot;CanSit&quot;);
            }
        }

        private bool canStay;
        public bool CanStay
        {
            get { return canStay; }
            set
            {
                canStay = value;
                RaisePropertyChanged(&quot;CanStay&quot;);
            }
        }

        public MainWindow()
        {
            this.InitializeComponent();
            this.DataContext = this;
        }

        private void btnReportState_Click(object sender, RoutedEventArgs e)
        {
            MessageBox.Show(string.Format(&quot;Sit: {0}, Stay: {1}&quot;, CanSit, CanStay));
        }

        private void btnChangeState_Click(object sender, RoutedEventArgs e)
        {
            CanSit = CanSit ? false : true;
        }

        public event PropertyChangedEventHandler PropertyChanged;

        private void RaisePropertyChanged(string propName)
        {
            PropertyChanged(this, new PropertyChangedEventArgs(propName));
        }
    }
</pre>
<br />Filed under: <a href='http://wpf.2000things.com/category/data-binding/'>Data Binding</a> Tagged: <a href='http://wpf.2000things.com/tag/checkbox/'>CheckBox</a>, <a href='http://wpf.2000things.com/tag/data-binding/'>Data Binding</a>, <a href='http://wpf.2000things.com/tag/twoway/'>TwoWay</a>, <a href='http://wpf.2000things.com/tag/wpf/'>WPF</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/2000thingswpf.wordpress.com/7080/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/2000thingswpf.wordpress.com/7080/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7080&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wpf.2000things.com/2013/05/22/825-two-way-binding-for-a-checkbox/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8922e4d5254d602ba3ed32dd073b5a4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spsexton</media:title>
		</media:content>
	</item>
		<item>
		<title>#824 &#8211; Setting a Cursor on a Top Level Element</title>
		<link>http://wpf.2000things.com/2013/05/21/824-setting-a-cursor-on-a-top-level-element/</link>
		<comments>http://wpf.2000things.com/2013/05/21/824-setting-a-cursor-on-a-top-level-element/#comments</comments>
		<pubDate>Tue, 21 May 2013 11:00:15 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Cursor]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://wpf.2000things.com/?p=7069</guid>
		<description><![CDATA[When you set the Cursor property on a FrameworkElement, the cursor is displayed whenever you move the mouse pointer over that element.  This Cursor value will also apply to all descendants of the element. In the example below, when we set the Cursor in the top-level Window, that cursor is used for all elements contained in the window. Layout, [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7069&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>When you set the <strong>Cursor</strong> property on a <strong>FrameworkElement</strong>, the cursor is displayed whenever you move the mouse pointer over that element.  This <strong>Cursor</strong> value will also apply to all descendants of the element.</p>
<p>In the example below, when we set the <strong>Cursor</strong> in the top-level<strong> Window</strong>, that cursor is used for all elements contained in the window.</p>
<p>Layout, within the <strong>Window</strong>:</p>
<pre class="brush: xml; title: ; notranslate">
    &lt;StackPanel&gt;
        &lt;Label Content=&quot;Ad eundum quo nemo ante iit&quot;
               Margin=&quot;5&quot;
               Background=&quot;LightCoral&quot;/&gt;
        &lt;Label Content=&quot;Noli habere bovis, vir&quot;
               Margin=&quot;5&quot;
               Background=&quot;DarkSeaGreen&quot;/&gt;
        &lt;StackPanel Orientation=&quot;Horizontal&quot;
                    HorizontalAlignment=&quot;Center&quot;&gt;
            &lt;Button Content=&quot;Veni, Vidi&quot;
                    Padding=&quot;10,5&quot; Margin=&quot;10&quot;
                    Click=&quot;btnClick_Wait&quot;/&gt;
            &lt;Button Content=&quot;Dormivi&quot;
                    Padding=&quot;10,5&quot; Margin=&quot;10&quot;
                    Click=&quot;btnClick_StopWaiting&quot;/&gt;
        &lt;/StackPanel&gt;
    &lt;/StackPanel&gt;
</pre>
<p>Code-behind:</p>
<pre class="brush: csharp; title: ; notranslate">
    public partial class MainWindow : Window
    {
        public MainWindow()
        {
            InitializeComponent();
        }

        private void btnClick_Wait(object sender, RoutedEventArgs e)
        {
            this.Cursor = Cursors.AppStarting;
        }

        private void btnClick_StopWaiting(object sender, RoutedEventArgs e)
        {
            this.Cursor = Cursors.Arrow;
        }
    }
</pre>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/824-001.png"><img class="alignnone size-full wp-image-7072" alt="824-001" src="http://2000thingswpf.files.wordpress.com/2013/05/824-001.png?w=630"   /><br />
<a href="http://2000thingswpf.files.wordpress.com/2013/05/824-002.png"><img class="alignnone size-full wp-image-7073" alt="824-002" src="http://2000thingswpf.files.wordpress.com/2013/05/824-002.png?w=630"   /></a><br />
<a href="http://2000thingswpf.files.wordpress.com/2013/05/824-003.png"><img class="alignnone size-full wp-image-7074" alt="824-003" src="http://2000thingswpf.files.wordpress.com/2013/05/824-003.png?w=630"   /></a><br />
<a href="http://2000thingswpf.files.wordpress.com/2013/05/824-004.png"><img class="alignnone size-full wp-image-7075" alt="824-004" src="http://2000thingswpf.files.wordpress.com/2013/05/824-004.png?w=630"   /></a><br />
<a href="http://2000thingswpf.files.wordpress.com/2013/05/824-005.png"><img class="alignnone size-full wp-image-7076" alt="824-005" src="http://2000thingswpf.files.wordpress.com/2013/05/824-005.png?w=630"   /></a></a></p>
<br />Filed under: <a href='http://wpf.2000things.com/category/miscellaneous/'>Miscellaneous</a> Tagged: <a href='http://wpf.2000things.com/tag/cursor/'>Cursor</a>, <a href='http://wpf.2000things.com/tag/miscellaneous/'>Miscellaneous</a>, <a href='http://wpf.2000things.com/tag/wpf/'>WPF</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/2000thingswpf.wordpress.com/7069/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/2000thingswpf.wordpress.com/7069/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7069&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wpf.2000things.com/2013/05/21/824-setting-a-cursor-on-a-top-level-element/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8922e4d5254d602ba3ed32dd073b5a4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spsexton</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/824-001.png" medium="image">
			<media:title type="html">824-001</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/824-002.png" medium="image">
			<media:title type="html">824-002</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/824-003.png" medium="image">
			<media:title type="html">824-003</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/824-004.png" medium="image">
			<media:title type="html">824-004</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/824-005.png" medium="image">
			<media:title type="html">824-005</media:title>
		</media:content>
	</item>
		<item>
		<title>#823 &#8211; Setting a Cursor from XAML</title>
		<link>http://wpf.2000things.com/2013/05/20/823-setting-a-cursor-from-xaml/</link>
		<comments>http://wpf.2000things.com/2013/05/20/823-setting-a-cursor-from-xaml/#comments</comments>
		<pubDate>Mon, 20 May 2013 11:00:17 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Miscellaneous]]></category>
		<category><![CDATA[Cursor]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://wpf.2000things.com/?p=7061</guid>
		<description><![CDATA[Every FrameworkElement has a Cursor property that you can set to an instance of a System.Windows.Input.Cursor object.  Typically, you&#8217;ll just set the property to one of the predefined cursors in the System.Windows.Input.Cursors class. When you set the Cursor property on an element, you&#8217;re indicating which cursor should appear when a user moves the mouse over that element. You can set the Cursor [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7061&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>Every <strong>FrameworkElement</strong> has a <strong>Cursor</strong> property that you can set to an instance of a <strong>System.Windows.Input.Cursor</strong> object.  Typically, you&#8217;ll just set the property to one of the predefined cursors in the <strong>System.Windows.Input.Cursors</strong> class.</p>
<p>When you set the <strong>Cursor</strong> property on an element, you&#8217;re indicating which cursor should appear when a user moves the mouse over that element.</p>
<p>You can set the <strong>Cursor</strong> property in XAML or in code.  In either case, you can pick from one of the predefined cursors in <strong>System.Windows.Input.Cursors</strong>.  In the image below, Intellisense in Visual Studio shows a list of the available cursors when setting the <strong>Cursor </strong>property from XAML.</p>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/823-001.png"><img class="alignnone size-full wp-image-7063" alt="823-001" src="http://2000thingswpf.files.wordpress.com/2013/05/823-001.png?w=630"   /></a></p>
<p>In the example below, we indicate that we want the <strong>Wait</strong> cursor displayed whenever we hover over the second label.</p>
<pre class="brush: xml; title: ; notranslate">
    &lt;StackPanel&gt;
        &lt;Label Content=&quot;I'm just a label, you know?&quot;
               Margin=&quot;5&quot;
               Background=&quot;LightCoral&quot;/&gt;
        &lt;Label Content=&quot;I'm waiting and waiting&quot;
               Margin=&quot;5&quot;
               Background=&quot;DarkSeaGreen&quot;
               Cursor=&quot;Wait&quot;/&gt;
    &lt;/StackPanel&gt;
</pre>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/823-002.png"><img class="alignnone size-full wp-image-7064" alt="823-002" src="http://2000thingswpf.files.wordpress.com/2013/05/823-002.png?w=630"   /></a><br />
<a href="http://2000thingswpf.files.wordpress.com/2013/05/823-003.png"><img class="alignnone size-full wp-image-7065" alt="823-003" src="http://2000thingswpf.files.wordpress.com/2013/05/823-003.png?w=630"   /></a></p>
<br />Filed under: <a href='http://wpf.2000things.com/category/miscellaneous/'>Miscellaneous</a> Tagged: <a href='http://wpf.2000things.com/tag/cursor/'>Cursor</a>, <a href='http://wpf.2000things.com/tag/miscellaneous/'>Miscellaneous</a>, <a href='http://wpf.2000things.com/tag/wpf/'>WPF</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/2000thingswpf.wordpress.com/7061/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/2000thingswpf.wordpress.com/7061/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7061&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wpf.2000things.com/2013/05/20/823-setting-a-cursor-from-xaml/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8922e4d5254d602ba3ed32dd073b5a4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spsexton</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/823-001.png" medium="image">
			<media:title type="html">823-001</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/823-002.png" medium="image">
			<media:title type="html">823-002</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/823-003.png" medium="image">
			<media:title type="html">823-003</media:title>
		</media:content>
	</item>
		<item>
		<title>#822 &#8211; Deciding which TextFormattingMode to Use</title>
		<link>http://wpf.2000things.com/2013/05/17/822-deciding-which-textformattingmode-to-use/</link>
		<comments>http://wpf.2000things.com/2013/05/17/822-deciding-which-textformattingmode-to-use/#comments</comments>
		<pubDate>Fri, 17 May 2013 11:00:39 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Fonts]]></category>
		<category><![CDATA[TextFormattingMode]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://wpf.2000things.com/?p=7055</guid>
		<description><![CDATA[The TextOptions.TextFormattingMode property indicates whether fonts should be formatted using the standard WPF algorithm or the legacy GDI method for positioning the individual glyphs in the font.  The property can have one of the following values: Ideal &#8211; Default value, formats text using the standard WPF method.  Glyph shapes are preserved, independent of their final position on [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7055&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>The <a href="http://wp.me/pZhye-1PH"><strong>TextOptions.</strong><strong>TextFormattingMode</strong></a> property indicates whether fonts should be formatted using the standard WPF algorithm or the legacy GDI method for positioning the individual glyphs in the font.  The property can have one of the following values:</p>
<ul>
<li><strong>Ideal</strong> &#8211; Default value, formats text using the standard WPF method.  Glyph shapes are preserved, independent of their final position on the display</li>
<li><strong>Display</strong> &#8211; Positions edges of glyphs on pixel boundaries.  Can result in clearer edges of text.</li>
</ul>
<p>You should use the value of <strong>Ideal</strong>, except for the situations listed below.</p>
<p>Set <strong>TextFormattingMode</strong> to <strong>Display</strong> when all of the following is true:</p>
<ul>
<li>The <strong>FontSize</strong> of the text is 14 or less  (small text)</li>
<li>Text is not being transformed (scaled, rotated, translated)</li>
<li>The exact shape of the glyphs is not critical (e.g. for some graphic design scenario)</li>
</ul>
<br />Filed under: <a href='http://wpf.2000things.com/category/fonts/'>Fonts</a> Tagged: <a href='http://wpf.2000things.com/tag/fonts/'>Fonts</a>, <a href='http://wpf.2000things.com/tag/textformattingmode/'>TextFormattingMode</a>, <a href='http://wpf.2000things.com/tag/wpf/'>WPF</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/2000thingswpf.wordpress.com/7055/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/2000thingswpf.wordpress.com/7055/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7055&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wpf.2000things.com/2013/05/17/822-deciding-which-textformattingmode-to-use/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8922e4d5254d602ba3ed32dd073b5a4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spsexton</media:title>
		</media:content>
	</item>
		<item>
		<title>#821 &#8211; Use TextFormattingMode to Make Text Look More Clear</title>
		<link>http://wpf.2000things.com/2013/05/16/821-use-textformattingmode-to-make-text-look-more-clear/</link>
		<comments>http://wpf.2000things.com/2013/05/16/821-use-textformattingmode-to-make-text-look-more-clear/#comments</comments>
		<pubDate>Thu, 16 May 2013 11:00:57 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Fonts]]></category>
		<category><![CDATA[TextFormattingMode]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://wpf.2000things.com/?p=7049</guid>
		<description><![CDATA[WPF tries to retain the exact shape and style of each glyph in a font, no matter what size the font is being rendered at.  This means that as the text gets smaller, relative to the pixel density of the display, the edges of the glyphs may no longer occur at pixel boundaries.  When this [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7049&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>WPF tries to retain the exact shape and style of each glyph in a font, no matter what size the font is being rendered at.  This means that as the text gets smaller, relative to the pixel density of the display, the edges of the glyphs may no longer occur at pixel boundaries.  When this happens, WPF will use anti-aliasing to render the edges of the glyphs in a different color.  This can lead to small text looking fuzzy, or having some odd color fragments along the edges of the letters.</p>
<p>To avoid fuzzy text at small sizes, you can set the <strong>TextOptions.</strong><strong>TextFormattingMode</strong> property to <strong>Display</strong> (as opposed to the default value of <strong>Ideal</strong>).  This tells WPF to align the glyphs at pixel boundaries, which can lead to crisper/cleaner text.</p>
<pre class="brush: xml; title: ; notranslate">
        &lt;TextBlock Text=&quot;WiWi WIWI HaHaHa (Ideal = Default)&quot;
                   Margin=&quot;5&quot;/&gt;
        &lt;TextBlock Text=&quot;WiWi WIWI HaHaHa (Display)&quot;
                   TextOptions.TextFormattingMode=&quot;Display&quot;
                   Margin=&quot;5&quot;/&gt;
</pre>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/821-001.png"><img class="alignnone size-full wp-image-7052" alt="821-001" src="http://2000thingswpf.files.wordpress.com/2013/05/821-001.png?w=630"   /></a></p>
<br />Filed under: <a href='http://wpf.2000things.com/category/fonts/'>Fonts</a> Tagged: <a href='http://wpf.2000things.com/tag/fonts/'>Fonts</a>, <a href='http://wpf.2000things.com/tag/textformattingmode/'>TextFormattingMode</a>, <a href='http://wpf.2000things.com/tag/wpf/'>WPF</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/2000thingswpf.wordpress.com/7049/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/2000thingswpf.wordpress.com/7049/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7049&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wpf.2000things.com/2013/05/16/821-use-textformattingmode-to-make-text-look-more-clear/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8922e4d5254d602ba3ed32dd073b5a4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spsexton</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/821-001.png" medium="image">
			<media:title type="html">821-001</media:title>
		</media:content>
	</item>
		<item>
		<title>#820 &#8211; Viewing Additional Font Properties in Windows Explorer</title>
		<link>http://wpf.2000things.com/2013/05/15/820-viewing-additional-font-properties-in-windows-explorer/</link>
		<comments>http://wpf.2000things.com/2013/05/15/820-viewing-additional-font-properties-in-windows-explorer/#comments</comments>
		<pubDate>Wed, 15 May 2013 11:00:48 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Font Properties Extension]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://wpf.2000things.com/?p=7020</guid>
		<description><![CDATA[You can preview TrueType fonts in Windows Explorer and also get some basic properties about each font.  If you right-click on a font file, select Properties and then select the Details tab, you&#8217;ll see some basic information: You can also download a Microsoft-provided tool, the OpenType Font File Properties Extension, to get even more information about each font. [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7020&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>You can <a href="http://wp.me/pZhye-1Po">preview TrueType fonts</a> in Windows Explorer and also get some basic properties about each font.  If you right-click on a font file, select <strong>Properties</strong> and then select the <strong>Details</strong> tab, you&#8217;ll see some basic information:</p>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/820-001.png"><img class="alignnone size-full wp-image-7040" alt="820-001" src="http://2000thingswpf.files.wordpress.com/2013/05/820-001.png?w=630"   /></a></p>
<p>You can also download a Microsoft-provided tool, the <strong>OpenType Font File Properties Extension</strong>, to get even more information about each font.  You can download the tool from <a href="http://download.microsoft.com/download/3/a/c/3ac0b656-54cf-4d39-8d4c-3506a0679f5e/setup.exe">here</a>.  (This tool will only work on 32-bit operating systems).</p>
<p>After installing the extension tool, the properties dialog for a font file will contain a number of additional tabs.</p>
<ul>
<li><strong>Embedding</strong> &#8211; Are you allowed to embed the font in your application?</li>
<li><strong>CharSet/Unicode</strong> &#8211; What encoding method is used (e.g. Unicode)</li>
<li><strong>Links</strong> &#8211; (optional) URL to font vendor</li>
<li><strong>Description</strong> &#8211; General info on the font</li>
<li><strong>License</strong> &#8211; license information</li>
<li><strong>Version</strong> &#8211; font version</li>
<li><strong>Hinting/Font Smoothing</strong> &#8211; point sizes for hinting/smoothing</li>
<li><strong>Names</strong> &#8211; Font name, font family name, vendor, etc.</li>
<li><strong>Features</strong> &#8211; Description from vendor</li>
</ul>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/820-002.png"><img class="alignnone size-full wp-image-7041" alt="820-002" src="http://2000thingswpf.files.wordpress.com/2013/05/820-002.png?w=630"   /></a></p>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/820-003.png"><img class="alignnone size-full wp-image-7042" alt="820-003" src="http://2000thingswpf.files.wordpress.com/2013/05/820-003.png?w=630"   /></a></p>
<p>&nbsp;</p>
<p>&nbsp;</p>
<br />Filed under: <a href='http://wpf.2000things.com/category/fonts/'>Fonts</a> Tagged: <a href='http://wpf.2000things.com/tag/font-properties-extension/'>Font Properties Extension</a>, <a href='http://wpf.2000things.com/tag/fonts/'>Fonts</a>, <a href='http://wpf.2000things.com/tag/wpf/'>WPF</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/2000thingswpf.wordpress.com/7020/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/2000thingswpf.wordpress.com/7020/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7020&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wpf.2000things.com/2013/05/15/820-viewing-additional-font-properties-in-windows-explorer/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8922e4d5254d602ba3ed32dd073b5a4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spsexton</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/820-001.png" medium="image">
			<media:title type="html">820-001</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/820-002.png" medium="image">
			<media:title type="html">820-002</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/820-003.png" medium="image">
			<media:title type="html">820-003</media:title>
		</media:content>
	</item>
		<item>
		<title>#819 &#8211; Previewing TrueType Fonts in Windows Explorer</title>
		<link>http://wpf.2000things.com/2013/05/14/819-previewing-truetype-fonts-in-windows-explorer/</link>
		<comments>http://wpf.2000things.com/2013/05/14/819-previewing-truetype-fonts-in-windows-explorer/#comments</comments>
		<pubDate>Tue, 14 May 2013 11:00:42 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Windows Explorer]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://wpf.2000things.com/?p=7030</guid>
		<description><![CDATA[You can view all installed fonts in Windows, using the Fonts applet.  You can also view font properties and preview arbitrary fonts using Windows Explorer. For example, assume that you have a directory containing some TrueType (.ttf) fonts, which are not current installed. You start by navigating to the folder containing the fonts. You can [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7030&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>You can <a href="http://wp.me/pZhye-1Ph">view all installed fonts</a> in Windows, using the Fonts applet.  You can also view font properties and preview arbitrary fonts using Windows Explorer.</p>
<p>For example, assume that you have a directory containing some TrueType (.ttf) fonts, which are not current installed.</p>
<p>You start by navigating to the folder containing the fonts.</p>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/819-001.png"><img class="alignnone size-full wp-image-7032" alt="819-001" src="http://2000thingswpf.files.wordpress.com/2013/05/819-001.png?w=630&#038;h=315" width="630" height="315" /></a></p>
<p>You can set the view in Windows Explorer to one of the icon-based views (e.g. <strong>Large icons</strong>) to see a thumbnail-based preview of each font.</p>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/819-002.png"><img class="alignnone size-full wp-image-7033" alt="819-002" src="http://2000thingswpf.files.wordpress.com/2013/05/819-002.png?w=630&#038;h=338" width="630" height="338" /></a></p>
<p>You can also turn on the <strong>Preview pane</strong> to see a preview of each font, as you select it.</p>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/819-0031.png"><img class="alignnone size-full wp-image-7045" alt="819-003" src="http://2000thingswpf.files.wordpress.com/2013/05/819-0031.png?w=630&#038;h=466" width="630" height="466" /></a></p>
<p>Finally, as with the Fonts applet, you can double-click a font to open a preview of the font in a separate window.</p>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/819-004.png"><img class="alignnone size-full wp-image-7035" alt="819-004" src="http://2000thingswpf.files.wordpress.com/2013/05/819-004.png?w=630&#038;h=490" width="630" height="490" /></a></p>
<br />Filed under: <a href='http://wpf.2000things.com/category/fonts/'>Fonts</a> Tagged: <a href='http://wpf.2000things.com/tag/fonts/'>Fonts</a>, <a href='http://wpf.2000things.com/tag/windows-explorer/'>Windows Explorer</a>, <a href='http://wpf.2000things.com/tag/wpf/'>WPF</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/2000thingswpf.wordpress.com/7030/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/2000thingswpf.wordpress.com/7030/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7030&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wpf.2000things.com/2013/05/14/819-previewing-truetype-fonts-in-windows-explorer/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8922e4d5254d602ba3ed32dd073b5a4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spsexton</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/819-001.png" medium="image">
			<media:title type="html">819-001</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/819-002.png" medium="image">
			<media:title type="html">819-002</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/819-0031.png" medium="image">
			<media:title type="html">819-003</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/819-004.png" medium="image">
			<media:title type="html">819-004</media:title>
		</media:content>
	</item>
		<item>
		<title>#818 &#8211; Previewing Installed Fonts</title>
		<link>http://wpf.2000things.com/2013/05/13/818-previewing-installed-fonts/</link>
		<comments>http://wpf.2000things.com/2013/05/13/818-previewing-installed-fonts/#comments</comments>
		<pubDate>Mon, 13 May 2013 11:00:49 +0000</pubDate>
		<dc:creator>Sean</dc:creator>
				<category><![CDATA[Fonts]]></category>
		<category><![CDATA[Preview]]></category>
		<category><![CDATA[WPF]]></category>

		<guid isPermaLink="false">http://wpf.2000things.com/?p=7023</guid>
		<description><![CDATA[You can easily get a preview of any of the fonts that are installed on your system. You can see all installed fonts by opening the Fonts applet.  On Windows 8, click the Start button, type &#8220;fonts&#8221;, click on &#8220;Settings&#8221; in the search results and then double-click the Fonts icon. &#160; This applet will show you a [&#8230;]<img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7023&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></description>
				<content:encoded><![CDATA[<p>You can easily get a preview of any of the fonts that are installed on your system.</p>
<p>You can see all installed fonts by opening the <strong>Fonts</strong> applet.  On Windows 8, click the Start button, type &#8220;fonts&#8221;, click on &#8220;Settings&#8221; in the search results and then double-click the <strong>Fonts</strong> icon.</p>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/818-001.png"><img class="alignnone size-full wp-image-7024" alt="818-001" src="http://2000thingswpf.files.wordpress.com/2013/05/818-001.png?w=630"   /></a></p>
<p>&nbsp;</p>
<p>This applet will show you a list of all fonts installed on your system, with each font displayed as a preview icon, or appearing as a stack of icons.</p>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/818-002.png"><img class="alignnone size-full wp-image-7025" alt="818-002" src="http://2000thingswpf.files.wordpress.com/2013/05/818-002.png?w=630&#038;h=391" width="630" height="391" /></a></p>
<p>&nbsp;</p>
<p>The icons that look like a stack indicate that there are multiple unique fonts for a particular font family.  Double-clicking on the stack shows you the individual fonts for that font family.</p>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/818-003.png"><img class="alignnone size-full wp-image-7026" alt="818-003" src="http://2000thingswpf.files.wordpress.com/2013/05/818-003.png?w=630"   /></a></p>
<p>You can get a preview of any of the fonts by double-clicking the font (or right-clicking and selecting <strong>Preview</strong>).  A preview window will open, showing you a sample of the font.</p>
<p><a href="http://2000thingswpf.files.wordpress.com/2013/05/818-004.png"><img class="alignnone size-full wp-image-7027" alt="818-004" src="http://2000thingswpf.files.wordpress.com/2013/05/818-004.png?w=630&#038;h=643" width="630" height="643" /></a></p>
<p>&nbsp;</p>
<br />Filed under: <a href='http://wpf.2000things.com/category/fonts/'>Fonts</a> Tagged: <a href='http://wpf.2000things.com/tag/fonts/'>Fonts</a>, <a href='http://wpf.2000things.com/tag/preview/'>Preview</a>, <a href='http://wpf.2000things.com/tag/wpf/'>WPF</a> <a rel="nofollow" href="http://feeds.wordpress.com/1.0/gocomments/2000thingswpf.wordpress.com/7023/"><img alt="" border="0" src="http://feeds.wordpress.com/1.0/comments/2000thingswpf.wordpress.com/7023/" /></a> <img alt="" border="0" src="http://stats.wordpress.com/b.gif?host=wpf.2000things.com&#038;blog=14605478&#038;post=7023&#038;subd=2000thingswpf&#038;ref=&#038;feed=1" width="1" height="1" />]]></content:encoded>
			<wfw:commentRss>http://wpf.2000things.com/2013/05/13/818-previewing-installed-fonts/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
	
		<media:content url="http://2.gravatar.com/avatar/8922e4d5254d602ba3ed32dd073b5a4e?s=96&#38;d=identicon&#38;r=G" medium="image">
			<media:title type="html">spsexton</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/818-001.png" medium="image">
			<media:title type="html">818-001</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/818-002.png" medium="image">
			<media:title type="html">818-002</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/818-003.png" medium="image">
			<media:title type="html">818-003</media:title>
		</media:content>

		<media:content url="http://2000thingswpf.files.wordpress.com/2013/05/818-004.png" medium="image">
			<media:title type="html">818-004</media:title>
		</media:content>
	</item>
	</channel>
</rss>
