<?xml version="1.0" encoding="utf-8"?>
<rss xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" version="2.0">
  <channel>
    <title>Removing All Doubt</title>
    <link>http://www.removingalldoubt.com</link>
    <description />
    <copyright>Copyright 2005 Chuck Jazdzewski</copyright>
    <lastBuildDate>Fri, 13 Oct 2006 12:49:26 GMT</lastBuildDate>
    <generator>ChrisAn's BlogX</generator>
    <managingEditor>chuckjaz@hotmail.com</managingEditor>
    <webMaster>chuckjaz@hotmail.com</webMaster>
    <item>
      <title>XAML Part VII: Fun with markup compatibility</title>
      <guid>http://www.removingalldoubt.com/permalink.aspx/301186e3-ec80-49ec-a2b0-2052dfa32d92</guid>
      <link>http://www.removingalldoubt.com/permalink.aspx/301186e3-ec80-49ec-a2b0-2052dfa32d92</link>
      <pubDate>Fri, 13 Oct 2006 12:49:26 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;p&gt;If you misspell an attribute name in an HTML document the browser will simply 
ignore it. For example, if you spell the &lt;span class="code"&gt;href&lt;/span&gt; 
attribute as &lt;span class="code"&gt;zhref&lt;/span&gt; the &lt;span class="code"&gt;&amp;lt;a&amp;gt;&lt;/span&gt; 
tag the attribute will be ignored. For example, &lt;a zhref="http://www.removingalldoubt.com"&gt;this is text is in 
such an 
&lt;span class="code"&gt;&amp;lt;a&amp;gt;&lt;/span&gt; tag.&lt;/a&gt; It is displayed like a link but it 
doesn't go anywhere because it doesn't contain an &lt;span class="code"&gt;href&lt;/span&gt; 
attribute. Intentional misspellings 
can be used to temporarily comment out an attributes or an element. XAML doesn't support 
this technique directly. If you misspell an attribute or an element the XAML 
parser will emit an error message and refused to produce a BAML file or load the 
document dynamically. This is the behavior you want if you unintentionally 
misspelled an attribute. The compiler will tell you exactly where the error is 
and you can quickly find and fix the problem. But temporarily commenting out an attribute 
can sometimes be useful when experimenting or prototyping. XAML provides a way 
to duplicate the this commenting out technique through the use of the 
markup compatibility namespace. Markup compatibility tells the parser which 
namespaces are not required to be recognized when loading a XAML document. If 
you declare a namespace that will never be recognized, such as &amp;quot;Comment&amp;quot;, you 
can use that namespace to comment out items by using its prefix. 
For example, let say you want to see the effect of removing the 
&lt;span class="code"&gt;Width&lt;/span&gt; property 
of a &lt;span class="code"&gt;Button&lt;/span&gt; but not lose the value it currently has 
which would happen if you simply deleted it. Consider the 
following,&lt;/p&gt;
&lt;pre&gt;&amp;lt;Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"&amp;gt; 
  &amp;lt;Canvas&amp;gt;
    &amp;lt;Button Canvas.Top="50" Canvas.Left="50" Width="100" Height="50"&amp;gt;
      Hello
    &amp;lt;/Button&amp;gt;
  &amp;lt;/Canvas&amp;gt;
&amp;lt;/Window&amp;gt;&lt;/pre&gt;
&lt;p&gt;To comment out the Width attribute you can add the markup compatibility 
namespace, then an unknown namespace, and finally declare the unknown namespace 
ignorable. This might look like,&lt;/p&gt;
&lt;pre&gt;&amp;lt;Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:c="Comment"
    mc:Ignorable="c"&amp;gt;
  &amp;lt;Canvas&amp;gt;
    &amp;lt;Button Canvas.Top="50" Canvas.Left="50" Width="100" Height="50"&amp;gt;
      Hello
    &amp;lt;/Button&amp;gt;
  &amp;lt;/Canvas&amp;gt;
&amp;lt;/Window&amp;gt;&lt;/pre&gt;

&lt;p&gt;You can then comment out the &lt;span class="code"&gt;Width&lt;/span&gt; and 
&lt;span class="code"&gt;Height&lt;/span&gt; attributes,&lt;/p&gt;
&lt;pre&gt;&amp;lt;Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:c="Comment"
    mc:Ignorable="c"&amp;gt;
  &amp;lt;Canvas&amp;gt;
    &amp;lt;Button Canvas.Top="50" Canvas.Left="50" c:Width="100" c:Height="50"&amp;gt;
      Hello
    &amp;lt;/Button&amp;gt;
  &amp;lt;/Canvas&amp;gt;
&amp;lt;/Window&amp;gt;&lt;/pre&gt;

&lt;p&gt;You can even comment out the entire &lt;span class="code"&gt;Button&lt;/span&gt; with,&lt;/p&gt;
&lt;pre&gt;&amp;lt;Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:c="Comment"
    mc:Ignorable="c"&amp;gt;
  &amp;lt;Canvas&amp;gt;
    &amp;lt;c:Button Canvas.Top="50" Canvas.Left="50" Width="100" Height="50"&amp;gt;
      Hello
    &amp;lt;/c:Button&amp;gt;
  &amp;lt;/Canvas&amp;gt;
&amp;lt;/Window&amp;gt;&lt;/pre&gt;


&lt;p&gt;I only recommend this when you are prototyping. You shouldn't have commented out text 
in production XAML files. Fortunately, this technique makes it easy to 
determine if you have removed all such commented out items. Simply delete the
&lt;span class="code"&gt;xmlns:c&lt;/span&gt; and &lt;span class="code"&gt;mc:Ignorable&lt;/span&gt; 
declarations from &lt;span class="code"&gt;Window&lt;/span&gt;. The compiler will now 
generate and error if you haven't removed comment prefixes. Finally, this technique makes it clear to any reader 
(both mechanical and human) that you intended to comment out this property, you 
simple didn't just misspell it.&lt;/p&gt;
&lt;/body&gt;
                </description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>If you misspell an attribute name in an HTML document the browser will simply 
ignore it. For example, if you spell the <span class="code">href</span> 
attribute as <span class="code">zhref</span> the <span class="code">&lt;a&gt;</span> 
tag the attribute will be ignored. For example, <a zhref="http://www.removingalldoubt.com">this is text is in 
such an 
<span class="code">&lt;a&gt;</span> tag.</a> It is displayed like a link but it 
doesn't go anywhere because it doesn't contain an <span class="code">href</span> 
attribute. Intentional misspellings 
can be used to temporarily comment out an attributes or an element. XAML doesn't support 
this technique directly. If you misspell an attribute or an element the XAML 
parser will emit an error message and refused to produce a BAML file or load the 
document dynamically. This is the behavior you want if you unintentionally 
misspelled an attribute. The compiler will tell you exactly where the error is 
and you can quickly find and fix the problem. But temporarily commenting out an attribute 
can sometimes be useful when experimenting or prototyping. XAML provides a way 
to duplicate the this commenting out technique through the use of the 
markup compatibility namespace. Markup compatibility tells the parser which 
namespaces are not required to be recognized when loading a XAML document. If 
you declare a namespace that will never be recognized, such as "Comment", you 
can use that namespace to comment out items by using its prefix. 
For example, let say you want to see the effect of removing the 
<span class="code">Width</span> property 
of a <span class="code">Button</span> but not lose the value it currently has 
which would happen if you simply deleted it. Consider the 
following,</p>
        <pre>&lt;Window xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"&gt; 
  &lt;Canvas&gt;
    &lt;Button Canvas.Top="50" Canvas.Left="50" Width="100" Height="50"&gt;
      Hello
    &lt;/Button&gt;
  &lt;/Canvas&gt;
&lt;/Window&gt;</pre>
        <p>To comment out the Width attribute you can add the markup compatibility 
namespace, then an unknown namespace, and finally declare the unknown namespace 
ignorable. This might look like,</p>
        <pre>&lt;Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:c="Comment"
    mc:Ignorable="c"&gt;
  &lt;Canvas&gt;
    &lt;Button Canvas.Top="50" Canvas.Left="50" Width="100" Height="50"&gt;
      Hello
    &lt;/Button&gt;
  &lt;/Canvas&gt;
&lt;/Window&gt;</pre>
        <p>You can then comment out the <span class="code">Width</span> and 
<span class="code">Height</span> attributes,</p>
        <pre>&lt;Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:c="Comment"
    mc:Ignorable="c"&gt;
  &lt;Canvas&gt;
    &lt;Button Canvas.Top="50" Canvas.Left="50" c:Width="100" c:Height="50"&gt;
      Hello
    &lt;/Button&gt;
  &lt;/Canvas&gt;
&lt;/Window&gt;</pre>
        <p>You can even comment out the entire <span class="code">Button</span> with,</p>
        <pre>&lt;Window
    xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
    xmlns:mc="http://schemas.openxmlformats.org/markup-compatibility/2006"
    xmlns:c="Comment"
    mc:Ignorable="c"&gt;
  &lt;Canvas&gt;
    &lt;c:Button Canvas.Top="50" Canvas.Left="50" Width="100" Height="50"&gt;
      Hello
    &lt;/c:Button&gt;
  &lt;/Canvas&gt;
&lt;/Window&gt;</pre>
        <p>I only recommend this when you are prototyping. You shouldn't have commented out text 
in production XAML files. Fortunately, this technique makes it easy to 
determine if you have removed all such commented out items. Simply delete the
<span class="code">xmlns:c</span> and <span class="code">mc:Ignorable</span> 
declarations from <span class="code">Window</span>. The compiler will now 
generate and error if you haven't removed comment prefixes. Finally, this technique makes it clear to any reader 
(both mechanical and human) that you intended to comment out this property, you 
simple didn't just misspell it.</p>
      </body>
      <comments>http://www.removingalldoubt.com/commentview.aspx/301186e3-ec80-49ec-a2b0-2052dfa32d92</comments>
      <category>Cider</category>
    </item>
    <item>
      <title>August CTP of Cider</title>
      <guid>http://www.removingalldoubt.com/permalink.aspx/72346c78-8c5a-4010-86c3-0ae202255ecd</guid>
      <link>http://www.removingalldoubt.com/permalink.aspx/72346c78-8c5a-4010-86c3-0ae202255ecd</link>
      <pubDate>Thu, 07 Sep 2006 17:54:48 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;
Another month and another version of Cider. The August CTP is now available
&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=935AABF9-D1D0-4FC9-B443-877D8EA6EAB8&amp;displaylang=en"&gt;
here&lt;/a&gt;. You can read the release notes and so forth from
&lt;a href="http://channel9.msdn.com/wiki/default.aspx/Cider.HomePage"&gt;Channel 9 
here&lt;/a&gt;. Not only did we make substantial changes, a list of which can be found
&lt;a href="http://channel9.msdn.com/wiki/default.aspx/Cider.AugustCTPReleaseNotes"&gt;
here&lt;/a&gt;, we also updated it to work with the new .NET Framework 3.0 RC1 
available
&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=19E21845-F5E3-4387-95FF-66788825C1AF&amp;displaylang=en"&gt;
here&lt;/a&gt;.&lt;p&gt;OK, I know we released a CTP in July I didn't blog about, but it was 
substantially a refresh to the CTP available for June (and I am a lazy blogger). 
Yes, yes, I also realize it is September and not August. I am blogging about it 
in September because it has just become available. The reason we call it the 
August CTP and not the September CTP is complicated but you can probably guess 
at least one reason...&lt;/p&gt;
&lt;p&gt;BTW, new and improved versions of stuff we removed from the main tree are 
slowing winding their way back. I will be a bit coy about them now so as not to 
steal the thunder away from the current CTP but some cool and exciting things 
are still to come.&lt;/p&gt;
&lt;p&gt;As always, we really want your feedback so be sure to check out the 
discussion site
&lt;a href="http://forums.microsoft.com/MSDN/ShowForum.aspx?forumid=169&amp;siteid=1"&gt;
here&lt;/a&gt;.&lt;/p&gt;
&lt;/body&gt;
                </description>
      <comments>http://www.removingalldoubt.com/commentview.aspx/72346c78-8c5a-4010-86c3-0ae202255ecd</comments>
      <category>Cider</category>
    </item>
    <item>
      <title>June CTP of Cider</title>
      <guid>http://www.removingalldoubt.com/permalink.aspx/b1d3799e-ac1f-4409-b800-de2ef0c81ce4</guid>
      <link>http://www.removingalldoubt.com/permalink.aspx/b1d3799e-ac1f-4409-b800-de2ef0c81ce4</link>
      <pubDate>Wed, 28 Jun 2006 09:56:45 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;p&gt;We &lt;a href="http://channel9.msdn.com/wiki/default.aspx/Cider.HomePage"&gt;
updated Cider&lt;/a&gt; to be compatible with the June CTP of WPF which is part of the
&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyID=8d09697e-4868-4d8d-a4cf-9b82a2ae542d&amp;DisplayLang=en"&gt;
June CTP of .NET Framework 3.0&lt;/a&gt; (the new name for WinFX) and threw in some 
bonus bug fixes. Check out the new release
&lt;a href="http://www.microsoft.com/downloads/details.aspx?FamilyId=1A994549-94CB-4F61-903D-A8C8E453EEF4&amp;displaylang=en"&gt;
here&lt;/a&gt;. The release notes can be found
&lt;a href="http://channel9.msdn.com/wiki/default.aspx/Cider.JuneCTPReleaseNotes"&gt;
here&lt;/a&gt; and, as always, we really want your feedback. If you have questions or 
comments about Cider let us know
&lt;a href="http://forums.microsoft.com/MSDN/ShowForum.aspx?forumid=169&amp;siteid=1"&gt;
here&lt;/a&gt;!&lt;/p&gt;
&lt;/body&gt;
                </description>
      <comments>http://www.removingalldoubt.com/commentview.aspx/b1d3799e-ac1f-4409-b800-de2ef0c81ce4</comments>
      <category>XAML</category>
    </item>
    <item>
      <title>May CTP of Cider</title>
      <guid>http://www.removingalldoubt.com/permalink.aspx/f17d949b-17e9-4836-8979-86b14e6d1c8a</guid>
      <link>http://www.removingalldoubt.com/permalink.aspx/f17d949b-17e9-4836-8979-86b14e6d1c8a</link>
      <pubDate>Wed, 24 May 2006 13:25:04 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;p&gt;We have announced the May CTP of Cider
&lt;a href="http://forums.microsoft.com/MSDN/ShowForum.aspx?forumid=169&amp;siteid=1"&gt;
here&lt;/a&gt; and release notes and download instructions can be found
&lt;a href="http://channel9.msdn.com/wiki/default.aspx/Cider.MayCTPReleaseNotes"&gt;
here&lt;/a&gt;. Some highlights include,&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;A much, much improved Grid experience&lt;/li&gt;
	&lt;li&gt;It can handle a much larger set of XAML files but there are still some
	&lt;a href="http://channel9.msdn.com/wiki/default.aspx/Cider.MayCTPXAMLLoadLimitations"&gt;
	limitations&lt;/a&gt; we are working on for a future CTP.&lt;/li&gt;
	&lt;li&gt;Delete key support!&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;But we removed some things as well,&lt;/p&gt;
&lt;ul&gt;
	&lt;li&gt;Document Outline support. &lt;/li&gt;
	&lt;li&gt;Zoom support. &lt;/li&gt;
	&lt;li&gt;Snap Lines. &lt;/li&gt;
	&lt;li&gt;Design support for StackPanel, DockPanel, and Canvas.&lt;/li&gt;
&lt;/ul&gt;
&lt;p&gt;This reflects a quality focus on this release. We are transitioning, as a 
team, from a small incubation project to a production team. We are committing to 
be &amp;quot;close to ship&amp;quot; quality on all features we release to the public. The 
features we removed didn't qualify and we are working on bringing them up to 
snuff.&lt;/p&gt;
&lt;/body&gt;
                </description>
      <comments>http://www.removingalldoubt.com/commentview.aspx/f17d949b-17e9-4836-8979-86b14e6d1c8a</comments>
      <category>XAML</category>
    </item>
    <item>
      <title>Cider's January CTP</title>
      <guid>http://www.removingalldoubt.com/permalink.aspx/45a081b3-b81e-4237-9805-eef190d854fc</guid>
      <link>http://www.removingalldoubt.com/permalink.aspx/45a081b3-b81e-4237-9805-eef190d854fc</link>
      <pubDate>Fri, 27 Jan 2006 19:59:06 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;p&gt;Cider has been available since December in CTP form. This is really old news 
and reasons why I haven't blogged about it till now you can see my previous post 
about my and my machines independent
&lt;a href="http://www.removingalldoubt.com/PermaLink.aspx/45335adf-f01a-4af1-b211-610c26529d00"&gt;
vacations&lt;/a&gt;. To get the January CTP see the Channel 9 page
&lt;a href="http://channel9.msdn.com/wiki/default.aspx/Cider.JanuaryCTPReleaseNotes"&gt;
http://channel9.msdn.com/wiki/default.aspx/Cider.JanuaryCTPReleaseNotes&lt;/a&gt;. You 
can keep track of our developments through our Channel 9 home page at
&lt;a href="http://channel9.msdn.com/wiki/default.aspx/Cider.HomePage"&gt;
http://channel9.msdn.com/wiki/default.aspx/Cider.HomePage&lt;/a&gt;. I will try to be 
better about timely blogging updates but given my past history maybe it would be 
better if you checked the home page now and then...&lt;/p&gt;
&lt;p&gt;This month we are focusing on the grid design experience. Even though we 
shipped it in December we really stole, uh, er, borrowed the grid design 
experience from Sparkle (aka the Expression Interactive Designer) which is also 
now available in CTP form available from
&lt;a href="http://www.microsoft.com/downloads/details.aspx?familyid=ed9f5fb2-4cfc-4d2c-9af8-580d644e3d1d&amp;displaylang=en"&gt;
http://www.microsoft.com/downloads/details.aspx?familyid=ed9f5fb2-4cfc-4d2c-9af8-580d644e3d1d&amp;amp;displaylang=en&lt;/a&gt;.
&lt;/p&gt;
&lt;p&gt;The Cider CTPs are not beta quality. I say that to make sure you know what to 
expect. We are delivering bits early and often to give all of you a chance to 
influence our development by giving us early feedback on our design and the 
general direction we are taking. I encourage all of you to take advantage of 
this. We are listening and care a lot about what you think.&lt;/p&gt;
&lt;/body&gt;
                </description>
      <comments>http://www.removingalldoubt.com/commentview.aspx/45a081b3-b81e-4237-9805-eef190d854fc</comments>
      <category>Programming</category>
    </item>
    <item>
      <title>More Cider at the PDC</title>
      <guid>http://www.removingalldoubt.com/permalink.aspx/c7cad822-4635-4a4d-b07f-b20559bacfd9</guid>
      <link>http://www.removingalldoubt.com/permalink.aspx/c7cad822-4635-4a4d-b07f-b20559bacfd9</link>
      <pubDate>Fri, 28 Oct 2005 01:36:47 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;p&gt;Yet more Cider stuff. Brian and Mark tag teamed together at the PDC to 
present how to add design-time behavior to WPF (Avalon) controls. You can find 
their presentation
&lt;a href="http://microsoft.sitestream.com/PDC05/TLN/TLN319_files/Default.htm#nopreload=1&amp;autostart=1"&gt;
here...&lt;/a&gt; (Maybe &lt;a href="http://www.corbinstreehouse.com/blog"&gt;Corbin&lt;/a&gt; 
will be able to
&lt;a href="http://www.removingalldoubt.com/commentview.aspx/f63c1229-365e-4fba-9765-d21d6a18f9b9"&gt;
view this one&lt;/a&gt; ;-).&lt;/p&gt;
&lt;p&gt;I seem to not be in any of the recent videos. I am really not that bashful. 
Here I am in the audience (Mark points to me). I wasn't on stage because I had 
to leave early to catch a plane. I will probably show up sooner or later in one 
of these.&lt;/p&gt;
&lt;/body&gt;
                </description>
      <comments>http://www.removingalldoubt.com/commentview.aspx/c7cad822-4635-4a4d-b07f-b20559bacfd9</comments>
      <category>Programming</category>
    </item>
    <item>
      <title>Cider on MSDN</title>
      <guid>http://www.removingalldoubt.com/permalink.aspx/f63c1229-365e-4fba-9765-d21d6a18f9b9</guid>
      <link>http://www.removingalldoubt.com/permalink.aspx/f63c1229-365e-4fba-9765-d21d6a18f9b9</link>
      <pubDate>Tue, 25 Oct 2005 21:21:43 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;p&gt;Mike Harsh and Mark Boulter demo'ed Cider for MSDN.
&lt;a href="http://msdn.microsoft.com/msdntv/episode.aspx?xml=episodes/en/20051020CiderMB/manifest.xml"&gt;
Check it out...&lt;/a&gt;&lt;/p&gt;
&lt;/body&gt;
                </description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>Mike Harsh and Mark Boulter demo'ed Cider for MSDN.
<a href="http://msdn.microsoft.com/msdntv/episode.aspx?xml=episodes/en/20051020CiderMB/manifest.xml">
Check it out...</a></p>
      </body>
      <comments>http://www.removingalldoubt.com/commentview.aspx/f63c1229-365e-4fba-9765-d21d6a18f9b9</comments>
      <category>Programming</category>
    </item>
    <item>
      <title>Cider on Channel 9</title>
      <guid>http://www.removingalldoubt.com/permalink.aspx/813160b4-a0f5-4392-93ef-45c2c6528f20</guid>
      <link>http://www.removingalldoubt.com/permalink.aspx/813160b4-a0f5-4392-93ef-45c2c6528f20</link>
      <pubDate>Tue, 25 Oct 2005 20:14:00 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;p&gt;Mark Boulter and Brian Pepin make an appearance on Channel 9 to explain and 
demo Cider.
&lt;a href="http://channel9.msdn.com/showpost.aspx?postid=129619"&gt;Check 
it out...&lt;/a&gt;&lt;/p&gt;&lt;/body&gt;
                </description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>Mark Boulter and Brian Pepin make an appearance on Channel 9 to explain and 
demo Cider.
<a href="http://channel9.msdn.com/showpost.aspx?postid=129619">Check 
it out...</a></p>
      </body>
      <comments>http://www.removingalldoubt.com/commentview.aspx/813160b4-a0f5-4392-93ef-45c2c6528f20</comments>
      <category>Programming</category>
    </item>
    <item>
      <title>Cider architecture</title>
      <guid>http://www.removingalldoubt.com/permalink.aspx/25cd872f-3772-404e-8f48-15d9c48f1a68</guid>
      <link>http://www.removingalldoubt.com/permalink.aspx/25cd872f-3772-404e-8f48-15d9c48f1a68</link>
      <pubDate>Tue, 25 Oct 2005 09:28:39 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;p&gt;Brian Pepin has started to blog about Cider's architecture.
&lt;a href="http://www.urbanpotato.net/Default.aspx/document/2224"&gt;Check it out...&lt;/a&gt;&lt;/p&gt;
&lt;/body&gt;
                </description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>Brian Pepin has started to blog about Cider's architecture.
<a href="http://www.urbanpotato.net/Default.aspx/document/2224">Check it out...</a></p>
      </body>
      <comments>http://www.removingalldoubt.com/commentview.aspx/25cd872f-3772-404e-8f48-15d9c48f1a68</comments>
      <category>Programming</category>
    </item>
    <item>
      <title>Cider demo'ed at the PDC</title>
      <guid>http://www.removingalldoubt.com/permalink.aspx/a38162d2-2558-41d5-a6f1-725c781d381c</guid>
      <link>http://www.removingalldoubt.com/permalink.aspx/a38162d2-2558-41d5-a6f1-725c781d381c</link>
      <pubDate>Tue, 04 Oct 2005 00:34:22 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;p&gt;If you missed the PDC and Eric Rudder's keynote address where Cider was 
demonstrated you can watch it &lt;a href="http://msdn.microsoft.com/events/pdc/"&gt;
here&lt;/a&gt;. Mark Boulter demonstrates it with Joe Marini demonstrating Sparkle. 
Their part begins around 37 minutes into the keynote.&lt;/p&gt;
&lt;/body&gt;
                </description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>If you missed the PDC and Eric Rudder's keynote address where Cider was 
demonstrated you can watch it <a href="http://msdn.microsoft.com/events/pdc/">
here</a>. Mark Boulter demonstrates it with Joe Marini demonstrating Sparkle. 
Their part begins around 37 minutes into the keynote.</p>
      </body>
      <comments>http://www.removingalldoubt.com/commentview.aspx/a38162d2-2558-41d5-a6f1-725c781d381c</comments>
      <category>Programming</category>
    </item>
    <item>
      <title>Cider is Announced</title>
      <guid>http://www.removingalldoubt.com/permalink.aspx/7c401e08-3ec1-4e8a-8a87-56f526192a0b</guid>
      <link>http://www.removingalldoubt.com/permalink.aspx/7c401e08-3ec1-4e8a-8a87-56f526192a0b</link>
      <pubDate>Sun, 18 Sep 2005 23:07:12 GMT</pubDate>
      <description>&lt;body xmlns="http://www.w3.org/1999/xhtml"&gt;
&lt;p&gt;Cider is now announced! In case you missed it at the PDC, Cider is the code 
name for the Visual Studio Designer for WPF (&lt;a href="http://www.simplegeek.com/PermaLink.aspx/848ef1d4-f694-43ee-92f7-047478b6b894"&gt;pronounced 
Avalon&lt;/a&gt; according to Chris) that will be delivered in Orcas. We also 
announced the Expression product line that includes a different designer called
&lt;a href="http://www.eweek.com/category2/0,1874,1361732,00.asp"&gt;Sparkle&lt;/a&gt;. 
Other than the obvious difference between Sparkle and Cider, Cider is in VS, 
Sparkle is a stand-alone product, Cider will be a designer for developers, 
Sparkle will be a designer targeted at professional designers.&lt;/p&gt;
&lt;p&gt;For those that were asking about what I was working on, I wasn't trying to be 
coy, I just didn't want to spill the beans early. &lt;/p&gt;
&lt;p&gt;I will be more forthcoming in the months ahead and try to keep you up-to-date 
with our progress.&lt;/p&gt;
&lt;p&gt;If I missed you at the PDC, I am sorry about that. Feel free to ask your 
questions here or via e-mail (chuckj directed through microsoft.com).&lt;/p&gt;
&lt;/body&gt;
                </description>
      <body xmlns="http://www.w3.org/1999/xhtml">
        <p>Cider is now announced! In case you missed it at the PDC, Cider is the code 
name for the Visual Studio Designer for WPF (<a href="http://www.simplegeek.com/PermaLink.aspx/848ef1d4-f694-43ee-92f7-047478b6b894">pronounced 
Avalon</a> according to Chris) that will be delivered in Orcas. We also 
announced the Expression product line that includes a different designer called
<a href="http://www.eweek.com/category2/0,1874,1361732,00.asp">Sparkle</a>. 
Other than the obvious difference between Sparkle and Cider, Cider is in VS, 
Sparkle is a stand-alone product, Cider will be a designer for developers, 
Sparkle will be a designer targeted at professional designers.</p>
        <p>For those that were asking about what I was working on, I wasn't trying to be 
coy, I just didn't want to spill the beans early. </p>
        <p>I will be more forthcoming in the months ahead and try to keep you up-to-date 
with our progress.</p>
        <p>If I missed you at the PDC, I am sorry about that. Feel free to ask your 
questions here or via e-mail (chuckj directed through microsoft.com).</p>
      </body>
      <comments>http://www.removingalldoubt.com/commentview.aspx/7c401e08-3ec1-4e8a-8a87-56f526192a0b</comments>
      <category>PDC05</category>
    </item>
  </channel>
</rss>