<?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>Mindscape Blog &#187; WPF Elements</title>
	<atom:link href="http://www.mindscapehq.com/blog/index.php/category/wpf-elements/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.mindscapehq.com/blog</link>
	<description>The official blog of Mindscape</description>
	<lastBuildDate>Thu, 16 May 2013 08:55:44 +0000</lastBuildDate>
	<language>en-US</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.5</generator>
		<item>
		<title>WPF Elements 6.0 Released!</title>
		<link>http://www.mindscapehq.com/blog/index.php/2013/05/02/wpf-elements-6-0-released/</link>
		<comments>http://www.mindscapehq.com/blog/index.php/2013/05/02/wpf-elements-6-0-released/#comments</comments>
		<pubDate>Fri, 03 May 2013 01:49:41 +0000</pubDate>
		<dc:creator>Jason</dc:creator>
				<category><![CDATA[WPF Elements]]></category>

		<guid isPermaLink="false">http://www.mindscapehq.com/blog/?p=6554</guid>
		<description><![CDATA[Today we are pleased to announce the release of WPF Elements 6.0. This version includes a huge load of improvements, features, bug fixes and a new control. Ribbon control The main new control in this version is the Ribbon control. A lot of users will be familiar with this control as the command hub that [...]]]></description>
				<content:encoded><![CDATA[<p>Today we are pleased to announce the release of <a href="http://www.mindscapehq.com/products/wpfelements">WPF Elements 6.0</a>. This version includes a huge load of improvements, features, bug fixes and a new control.</p>
<p><strong>Ribbon control</strong></p>
<p>The main new control in this version is the <a href="http://www.mindscapehq.com/products/wpfelements/controls/wpf-ribbon">Ribbon control</a>. A lot of users will be familiar with this control as the command hub that sits at the top of Microsoft Office applications. This control is a replacement for the Menu control and is used to categorize application commands and display them nicely to the user. Out of the box, this control supports a lot of WPF Controls including buttons, check boxes, comboboxes, numeric controls, split buttons and more. Based on the available screen real-estate, the Ribbon control will select a small, medium or large state for each control and arrange them in an optimal way. If there isn&#8217;t enough space, groups of controls will bubble down into expandable segments so the user still has access to everything.</p>
<p><a href="http://www.mindscapehq.com/blog/wp-content/uploads/2013/04/SmartLayout.png"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2013/04/SmartLayout.png" alt="Ribbon control" width="718" height="483" class="alignnone size-full wp-image-6559" /></a></p>
<p>Included with the Ribbon control is the Gallery control which is like a Ribbon-friendly list box. Items are displayed in horizontal rows and can be navigated through with smooth animations. The user can expand the whole list of items in a popup where items can be optionally categorized. Gallery controls can either be placed directly within the Ribbon control, or within the dropdown part of a split button.</p>
<p><a href="http://www.mindscapehq.com/blog/wp-content/uploads/2013/04/Ribbon_Gallery.png"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2013/04/Ribbon_Gallery.png" alt="Gallery control" width="628" height="230" class="alignnone size-full wp-image-6558" /></a></p>
<p>A demo called &#8220;Text Formatter&#8221; is included with WPF Elements 6.0 which demonstrates all the features of the Ribbon control.</p>
<p><strong>Improved DateTime axis support</strong></p>
<p>Since version 1 of the <a href="http://www.mindscapehq.com/products/wpfelements/wpf-charting">Chart control</a>, there has always been support for displaying DateTime values along the axes. The axes automatically space out the tick marks and labels which works well for numbers, but could be better for DateTime values. In WPF Elements 6.0 <strong>the axes logic for DateTime values is much improved</strong>. Labels will now be separated by proper time units rather than seemingly random intervals. For example, based on the current time range on the axis, the labels could be separated by 5 minutes, or 12 hours, or 2 days or 3 months etc. The interesting one here is monthly intervals because each month has a different number of days. The labels and tick mark spacings will be physically different to support this making the axis labels very easy to read.</p>
<p><a href="http://www.mindscapehq.com/blog/wp-content/uploads/2013/04/ImprovedDateTimeAxisSupport.png"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2013/04/ImprovedDateTimeAxisSupport.png" alt="Improved DateTime axis support" width="718" height="381" class="alignnone size-full wp-image-6557" /></a></p>
<p><strong>Accurate data rendering.</strong></p>
<p>The <strong>Chart control can handle millions of data points</strong> at once while maintaining good responsiveness. One of the ways it does this is by skipping over some of the data points so that only a few hundred points need to be rendered at once. As you zoom in, less points are skipped over so all the data can still be viewed. By default, the Chart control skips over of a constant number of data points per render. For example, the Chart may render every 10th point. This works well, but it can potentially skip extreme outlying data points and not capture an accurate shape of the data. In version 6.0 we include the IsMinMaxSamplingEnabled property on data series which when set to true will sacrifice a small amount of performance to <strong>render more accurate data</strong>. This is ideal for data that has sudden changes in the trend or outlying values. Here is a before and after shot of a trigonometry equation containing an extreme amount of spikes. For this kind of data there is a huge improvement with using this feature.</p>
<p><a href="http://www.mindscapehq.com/blog/wp-content/uploads/2013/04/DataSamplingBefore.png"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2013/04/DataSamplingBefore.png" alt="Old data sampling" width="718" height="312" class="alignnone size-full wp-image-6556" /></a></p>
<p><a href="http://www.mindscapehq.com/blog/wp-content/uploads/2013/04/DataSamplingAfter.png"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2013/04/DataSamplingAfter.png" alt="New data sampling" width="718" height="313" class="alignnone size-full wp-image-6555" /></a></p>
<p><strong>There are heaps of other additions</strong> that I&#8217;d love to tell you about but can&#8217;t fit into this blog post. For the full list, check out the Getting Started/What&#8217;s New page in the documentation that is shipped with the product. <a href="http://www.mindscapehq.com/products/wpfelements/whats-new">You can also see a simplified list of what&#8217;s new right here</a>.</p>
<p>If you&#8217;re already a WPF Elements customer, you can upgrade to version 6.0 for free by going to your <a href="http://www.mindscapehq.com/store/myaccount">account page</a>. If not, <a href="http://www.mindscapehq.com/products/wpfelements/download">download the free 30 day trial</a> to see what you&#8217;re missing out on. If you have any questions about WPF Elements, <a href="http://www.mindscapehq.com/forums/forum/15">let us know in the forum</a>. We&#8217;d also love to hear any <a href="http://www.mindscapehq.com/thinktank/product/15">feature requests</a> you have.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindscapehq.com/blog/index.php/2013/05/02/wpf-elements-6-0-released/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Nightly news, 1 Mar 2013</title>
		<link>http://www.mindscapehq.com/blog/index.php/2013/02/28/nightly-news-1-mar-2013/</link>
		<comments>http://www.mindscapehq.com/blog/index.php/2013/02/28/nightly-news-1-mar-2013/#comments</comments>
		<pubDate>Fri, 01 Mar 2013 01:12:21 +0000</pubDate>
		<dc:creator>Jeremy Boyd</dc:creator>
				<category><![CDATA[LightSpeed]]></category>
		<category><![CDATA[Nightly news]]></category>
		<category><![CDATA[Web Workbench]]></category>
		<category><![CDATA[WPF Diagrams]]></category>
		<category><![CDATA[WPF Elements]]></category>

		<guid isPermaLink="false">http://www.mindscapehq.com/blog/?p=6455</guid>
		<description><![CDATA[LightSpeed Suppress code gen of LINQ IQueryable for transient entities Fix issue for C# templates with association fields being marked private when derived types are present, should be protected in these cases Fix for issue with delete cascading of an entity where it was associated with the base entity in a CTI relationship Web Workbench [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://raygun.io/404"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2012/05/DeveloperNotes211.png" alt="" title="" width="344" height="64" class="alignleft size-full wp-image-5007" /></a></p>
<p><strong>LightSpeed</strong></p>
<ul>
<li>Suppress code gen of LINQ IQueryable for transient entities</li>
<li>Fix issue for C# templates with association fields being marked private when derived types are present, should be protected in these cases</li>
<li>Fix for issue with delete cascading of an entity where it was associated with the base entity in a CTI relationship</li>
</ul>
<p><strong>Web Workbench</strong></p>
<ul>
<li>Fix for an issue with invalid warnings being emitted regarding missing folders on save</li>
<li>Updated CoffeeScript to 1.5</li>
<li>Added support for Literate CoffeeScript</li>
<li>Added an option to suppress warnings about missing folders to Web Workbench options</li>
<li>Updated the Visual Studio Gallery</li>
</ul>
<p><strong>WPF Diagrams</strong></p>
<ul>
<li>Resolved a connection point placement issue caused by deserializing a rotated node.<br />
 <a href="http://www.mindscapehq.com/forums/thread/590561">(details)</a></li>
</ul>
<p><strong>WPF Elements</strong></p>
<ul>
<li>Resolved a DataGrid auto column size bug.<br />
 <a href="http://www.mindscapehq.com/forums/thread/573612#582020">(details)</a></li>
<li>Resolved a bug caused by using Snoop to debug the DataGrid.<br />
 <a href="http://www.mindscapehq.com/forums/thread/573612#582032">(details)</a></li>
<li>Resolved a bug calculating the extent of the DataGrid.<br />
 <a href="http://www.mindscapehq.com/forums/thread/573612#582032">(details)</a></li>
<li>Resolved an edge case issue in a DataGrid with 1 column and FrozenColumnCount = 1.<br />
 <a href="http://www.mindscapehq.com/forums/thread/588097">(details)</a></li>
<li>Resolved an exception when dragging the DataGrid padding column header.<br />
 <a href="http://www.mindscapehq.com/forums/thread/588776#589992">(details)</a></li>
<li>Added Minor and MajorRangeButtonsVisibility properties to the TimeExplorer.<br />
 <a href="http://www.mindscapehq.com/forums/thread/592248">(details)</a></li>
<li>Resolved a DataGridPager bug.<br />
 <a href="http://www.mindscapehq.com/forums/thread/595289">(details)</a></li>
<li>Resolved a bug in LineAreaSeriesBase.GetY when the data includes null points.<br />
 <a href="http://www.mindscapehq.com/forums/thread/592347#598374">(details)</a></li>
</ul>
<p>As usual the <a href="http://www.mindscapehq.com/downloads/">free editions of the nightly builds are available right now from the downloads page</a>, and the <a href="http://www.mindscapehq.com/store/myaccount">full editions from the store</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindscapehq.com/blog/index.php/2013/02/28/nightly-news-1-mar-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nightly news, 18 Jan 2013</title>
		<link>http://www.mindscapehq.com/blog/index.php/2013/01/17/nightly-news-18-jan-2013/</link>
		<comments>http://www.mindscapehq.com/blog/index.php/2013/01/17/nightly-news-18-jan-2013/#comments</comments>
		<pubDate>Thu, 17 Jan 2013 21:26:50 +0000</pubDate>
		<dc:creator>Jeremy Boyd</dc:creator>
				<category><![CDATA[Nightly news]]></category>
		<category><![CDATA[Silverlight Elements]]></category>
		<category><![CDATA[WPF Diagrams]]></category>
		<category><![CDATA[WPF Elements]]></category>

		<guid isPermaLink="false">http://www.mindscapehq.com/blog/?p=6308</guid>
		<description><![CDATA[WPF Elements Added Chart.ForceRender method for special scenarios. (details) Added DataSeriesSelected event to Chart, raised when a new series has been clicked on Resolved the scenario when a DateTimePicker contains a lone &#8220;ddd&#8221; or &#8220;dddd&#8221; component Added basic min/max feature to the DateTimePicker. (details) Added TimeExplorer.CanEditRangeMagnitude property. (details) Adjustments to the new DataGrid MouseOverCell feature. [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://rein.pk/thorium-reactors/"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2012/05/DeveloperNotes211.png" alt="" title="" width="344" height="64" class="alignleft size-full wp-image-5007" /></a></p>
<p><strong>WPF Elements</strong></p>
<ul>
<li>Added Chart.ForceRender method for special scenarios.<br />
 <a href="http://www.mindscapehq.com/forums/thread/539071#539836">(details)</a></li>
<li>Added DataSeriesSelected event to Chart, raised when a new series has been clicked on</li>
<li>Resolved the scenario when a DateTimePicker contains a lone &#8220;ddd&#8221; or &#8220;dddd&#8221; component</li>
<li>Added basic min/max feature to the DateTimePicker.<br />
 <a href="http://www.mindscapehq.com/forums/thread/460567">(details)</a></li>
<li>Added TimeExplorer.CanEditRangeMagnitude property.<br />
 <a href="http://www.mindscapehq.com/forums/thread/523700">(details)</a></li>
<li>Adjustments to the new DataGrid MouseOverCell feature.<br />
 <a href="http://www.mindscapehq.com/forums/thread/528872">(details)</a></li>
<li>Resolved an exception in the PropertyGrid collection editor.<br />
 <a href="http://www.mindscapehq.com/forums/thread/529878">(details)</a></li>
<li>Added ChartMouseRightButtonDown and ChartMouseRightButtonUp events.<br />
 <a href="http://www.mindscapehq.com/forums/thread/541267">(details)</a></li>
<li>Selected data series logic.<br />
 <a href="http://www.mindscapehq.com/forums/thread/542385">(details)</a></li>
<li>The ChartGrid now aquires the new axes of its parent chart if they change.<br />
 <a href="http://www.mindscapehq.com/forums/thread/536293#547484">(details)</a></li>
</ul>
<p><strong>WPF Diagrams</strong></p>
<ul>
<li>Added TreeLayoutAlgorithm.StationaryNode property.<br />
 <a href="http://www.mindscapehq.com/forums/thread/451392#512414">(details)</a></li>
<li>The AStarPathfinder now respects the IsUserModified connection property<br />
 <a href="http://www.mindscapehq.com/forums/thread/4317#519701">(details)</a></li>
</ul>
<p><strong>Silverlight Elements</strong></p>
<ul>
<li>Resolved a minor bug with displaying data labels.<br />
<a href="http://www.mindscapehq.com/forums/thread/532386">(details)</a></li>
</ul>
<p>As usual the <a href="http://www.mindscapehq.com/downloads/">free editions of the nightly builds are available right now from the downloads page</a>, and the <a href="http://www.mindscapehq.com/store/myaccount">full editions from the store</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindscapehq.com/blog/index.php/2013/01/17/nightly-news-18-jan-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nightly news, 11 Jan 2013</title>
		<link>http://www.mindscapehq.com/blog/index.php/2013/01/17/nightly-news-11-jan-2013/</link>
		<comments>http://www.mindscapehq.com/blog/index.php/2013/01/17/nightly-news-11-jan-2013/#comments</comments>
		<pubDate>Thu, 17 Jan 2013 21:26:47 +0000</pubDate>
		<dc:creator>Jeremy Boyd</dc:creator>
				<category><![CDATA[LightSpeed]]></category>
		<category><![CDATA[Nightly news]]></category>
		<category><![CDATA[Web Workbench]]></category>
		<category><![CDATA[WPF Elements]]></category>

		<guid isPermaLink="false">http://www.mindscapehq.com/blog/?p=6261</guid>
		<description><![CDATA[Web Workbench Patch to JS2Coffee to avoid stdin check Misc bug fixes Visual Studio Gallery updated! LightSpeed Fix for rogue SqlServer UDT types causing an exception when surfaced in via the stored proc route, set these as object data types if encountered instead. Fix for http://www.mindscapehq.com/forums/thread/539142 WPF Elements Fixed DataGrid column horizontal scrolling bug when [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://techtalks.tv/talks/machine-learning-and-ai-via-brain-simulations/57862/"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2012/05/DeveloperNotes211.png" alt="" title="" width="344" height="64" class="alignleft size-full wp-image-5007" /></a></p>
<p><strong>Web Workbench</strong></p>
<ul>
<li>Patch to JS2Coffee to avoid stdin check</li>
<li>Misc bug fixes</li>
<li>Visual Studio Gallery updated!</li>
</ul>
<p><strong>LightSpeed</strong></p>
<ul>
<li>Fix for rogue SqlServer UDT types causing an exception when surfaced in via the stored proc route, set these as object data types if encountered instead.</li>
<li>Fix for http://www.mindscapehq.com/forums/thread/539142</li>
</ul>
<p><strong>WPF Elements</strong></p>
<ul>
<li>Fixed DataGrid column horizontal scrolling bug when there is a frozen column count and a hidden column to the left of it.<br />
 <a href="http://www.mindscapehq.com/forums/thread/529556">(details)</a></li>
</ul>
<p><strong>Metro Elements</strong></p>
<ul>
<li>Fix: CoverFlows with non-linear paths now have drag manipulation enabled</li>
<li>Misc bug fixes</li>
</ul>
<p>As usual the <a href="http://www.mindscapehq.com/downloads/">free editions of the nightly builds are available right now from the downloads page</a>, and the <a href="http://www.mindscapehq.com/store/myaccount">full editions from the store</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindscapehq.com/blog/index.php/2013/01/17/nightly-news-11-jan-2013/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nightly news, 21 Dec 2012</title>
		<link>http://www.mindscapehq.com/blog/index.php/2012/12/20/nightly-news-21-dec-2012/</link>
		<comments>http://www.mindscapehq.com/blog/index.php/2012/12/20/nightly-news-21-dec-2012/#comments</comments>
		<pubDate>Thu, 20 Dec 2012 21:48:29 +0000</pubDate>
		<dc:creator>Jeremy Boyd</dc:creator>
				<category><![CDATA[Metro Elements]]></category>
		<category><![CDATA[Nightly news]]></category>
		<category><![CDATA[Web Workbench]]></category>
		<category><![CDATA[WPF Diagrams]]></category>
		<category><![CDATA[WPF Elements]]></category>

		<guid isPermaLink="false">http://www.mindscapehq.com/blog/?p=6253</guid>
		<description><![CDATA[Web Workbench Visual Studio Gallery updated! WPF Elements Resolved some bugs in the DataGrid bring-into-view logic. (details) Resolved a minor bug in the DataGrid when using DisplayMemberBinding in conjunction with custom property descriptors. (details) Added DataGrid.IsSynchronizedWithCurrentItem property. (details) WPF Diagrams Resolved a designer exception. (details) Fixed the SelectedItemsChanged event logic. (details) Resolved a size-to-fit issue [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://survivial-training.wonderhowto.com/how-to/end-world-survival-guide-staying-alive-during-zombie-apocalypse-0140310/"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2012/05/DeveloperNotes211.png" alt="Fortune favours the prepared mind" title="Fortune favours the prepared mind" width="344" height="64" class="alignleft size-full wp-image-5007" /></a></p>
<p><strong>Web Workbench</strong></p>
<ul>
<li>Visual Studio Gallery updated!</li>
</ul>
<p><strong>WPF Elements</strong></p>
<ul>
<li>Resolved some bugs in the DataGrid bring-into-view logic.<br />
 <a href="http://www.mindscapehq.com/forums/thread/476891">(details)</a></li>
<li>Resolved a minor bug in the DataGrid when using DisplayMemberBinding in conjunction with custom property descriptors.<br />
<a href="http://www.mindscapehq.com/forums/thread/502722">(details)</a></li>
<li>Added DataGrid.IsSynchronizedWithCurrentItem property.<br />
 <a href="http://www.mindscapehq.com/forums/thread/503491">(details)</a></li>
</ul>
<p><strong>WPF Diagrams</strong></p>
<ul>
<li>Resolved a designer exception.<br />
<a href="http://www.mindscapehq.com/forums/thread/502982">(details)</a></li>
<li>Fixed the SelectedItemsChanged event logic.<br />
<a href="http://www.mindscapehq.com/forums/thread/503334">(details)</a></li>
<li>Resolved a size-to-fit issue on initial load in some scenarios.<br />
<a href="http://www.mindscapehq.com/forums/thread/503352">(details)</a></li>
</ul>
<p><strong>Metro Elements</strong></p>
<ul>
<li>Updates to sample explorer and misc bug fixes</li>
</ul>
<p>As usual the <a href="http://www.mindscapehq.com/downloads/">free editions of the nightly builds are available right now from the downloads page</a>, and the <a href="http://www.mindscapehq.com/store/myaccount">full editions from the store</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindscapehq.com/blog/index.php/2012/12/20/nightly-news-21-dec-2012/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>Nightly news, 14 Dec 2012</title>
		<link>http://www.mindscapehq.com/blog/index.php/2012/12/13/nightly-news-14-dec-2012/</link>
		<comments>http://www.mindscapehq.com/blog/index.php/2012/12/13/nightly-news-14-dec-2012/#comments</comments>
		<pubDate>Thu, 13 Dec 2012 20:57:27 +0000</pubDate>
		<dc:creator>Jeremy Boyd</dc:creator>
				<category><![CDATA[LightSpeed]]></category>
		<category><![CDATA[Metro Elements]]></category>
		<category><![CDATA[Nightly news]]></category>
		<category><![CDATA[Web Workbench]]></category>
		<category><![CDATA[WPF Diagrams]]></category>
		<category><![CDATA[WPF Elements]]></category>

		<guid isPermaLink="false">http://www.mindscapehq.com/blog/?p=6246</guid>
		<description><![CDATA[LightSpeed Fix for an aliasing issue with CTI (details) 5.0 beta now available! Web Workbench Added an option to trigger a compile of all files on build WPF Elements Resolved a bug in the DoubleTextBox control. (details) Invisible columns are skipped when navigating in a DataGrid. (details) Resolved a minor bug with rendering data labels [...]]]></description>
				<content:encoded><![CDATA[<p><a href="https://github.com/CoderDojo/CoderDojo-Kata/pull/1/files"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2012/05/DeveloperNotes211.png" alt="Hack the Gibson" title="Hack the Gibson" width="344" height="64" class="alignleft size-full wp-image-5007" /></a></p>
<p><strong>LightSpeed</strong></p>
<ul>
<li>Fix for an aliasing issue with CTI<br />
<a href="http://www.mindscapehq.com/forums/thread/498768">(details)</a></li>
<li>5.0 beta now available!</li>
</ul>
<p><strong>Web Workbench</strong></p>
<ul>
<li>Added an option to trigger a compile of all files on build</li>
</ul>
<p><strong>WPF Elements</strong></p>
<ul>
<li>Resolved a bug in the DoubleTextBox control.<br />
 <a href="http://www.mindscapehq.com/forums/thread/485261#495240">(details)</a></li>
<li>Invisible columns are skipped when navigating in a DataGrid.<br />
<a href="http://www.mindscapehq.com/forums/thread/494476">(details)</a></li>
<li>Resolved a minor bug with rendering data labels on a horizontal bar chart to the left of the baseline.<br />
<a href="http://www.mindscapehq.com/forums/thread/485093#501286">(details)</a></li>
</ul>
<p><strong>WPF Diagrams</strong></p>
<ul>
<li>Smart scrolling for connection creation.<br />
<a href="http://www.mindscapehq.com/forums/thread/498812">(details)</a></li>
<li>WPF Diagrams 3.0 released!</li>
</ul>
<p><strong>Metro Elements</strong></p>
<ul>
<li>Fixed chart legend positioning when centered</li>
</ul>
<p>As usual the <a href="http://www.mindscapehq.com/downloads/">free editions of the nightly builds are available right now from the downloads page</a>, and the <a href="http://www.mindscapehq.com/store/myaccount">full editions from the store</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindscapehq.com/blog/index.php/2012/12/13/nightly-news-14-dec-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nightly news, 7 Dec 2012</title>
		<link>http://www.mindscapehq.com/blog/index.php/2012/12/06/nightly-news-7-dec-2012/</link>
		<comments>http://www.mindscapehq.com/blog/index.php/2012/12/06/nightly-news-7-dec-2012/#comments</comments>
		<pubDate>Fri, 07 Dec 2012 03:41:49 +0000</pubDate>
		<dc:creator>Jeremy Boyd</dc:creator>
				<category><![CDATA[LightSpeed]]></category>
		<category><![CDATA[Metro Elements]]></category>
		<category><![CDATA[Nightly news]]></category>
		<category><![CDATA[Web Workbench]]></category>
		<category><![CDATA[WPF Elements]]></category>

		<guid isPermaLink="false">http://www.mindscapehq.com/blog/?p=6193</guid>
		<description><![CDATA[LightSpeed Fix for exception when performing a projection query with paging over a CTI model on SQL Server Added Put/Delete attributes for WebContract routing Web Workbench Parser fix for issue with incorrect highlighting for inline data values Parser update to correctly handle interpolated variable references being used in value lists Parser update to correctly parse [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://duckduckgo.com/tty/"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2012/05/DeveloperNotes211.png" alt="Bring back the command line interface" title="Bring back the command line interface" width="344" height="64" class="alignleft size-full wp-image-5007" /></a></p>
<p><strong>LightSpeed</strong></p>
<ul>
<li>Fix for exception when performing a projection query with paging over a CTI model on SQL Server</li>
<li>Added Put/Delete attributes for WebContract routing</li>
</ul>
<p><strong>Web Workbench</strong></p>
<ul>
<li>Parser fix for issue with incorrect highlighting for inline data values</li>
<li>Parser update to correctly handle interpolated variable references being used in value lists</li>
<li>Parser update to correctly parse redundant nested bracketing on function calls</li>
<li>Parser update to support bang directives on @extend</li>
<li>Parser update to improve parsing support for @warn</li>
<li>Updated less to latest version from Github</li>
<li>Added a global option to turn off automatic adding of compiled output into the project</li>
<li>Compile/Minify options are now hidden if the files are being managed by Compass</li>
</ul>
<p><strong>WPF Elements</strong></p>
<ul>
<li>Added BarSeries.BarRenderingMode property to create Tornado charts.<br />
 <a href="http://www.mindscapehq.com/forums/thread/485093">(details)</a></li>
<li>Resolved a DataGrid selection bug.<br />
<a href="http://www.mindscapehq.com/forums/thread/485208">(details)</a></li>
<li>Added ConnectionRelocationInfo.DropTarget property for more fine-tuned control of overriding the relocation behavior.<br />
<a href="http://www.mindscapehq.com/forums/thread/485675">(details)</a></li>
<li>The PropertyGrid.Refresh method now respects the IsExpandedStatePersistent property.</li>
</ul>
<p><strong>Metro Elements</strong></p>
<ul>
<li>Misc updates to Sample Explorer</li>
</ul>
<p>As usual the <a href="http://www.mindscapehq.com/downloads/">free editions of the nightly builds are available right now from the downloads page</a>, and the <a href="http://www.mindscapehq.com/store/myaccount">full editions from the store</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindscapehq.com/blog/index.php/2012/12/06/nightly-news-7-dec-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nightly news, 30 Nov 2012</title>
		<link>http://www.mindscapehq.com/blog/index.php/2012/11/29/nightly-news-30-nov-2012/</link>
		<comments>http://www.mindscapehq.com/blog/index.php/2012/11/29/nightly-news-30-nov-2012/#comments</comments>
		<pubDate>Fri, 30 Nov 2012 02:09:34 +0000</pubDate>
		<dc:creator>Jeremy Boyd</dc:creator>
				<category><![CDATA[LightSpeed]]></category>
		<category><![CDATA[Nightly news]]></category>
		<category><![CDATA[Web Workbench]]></category>
		<category><![CDATA[WPF Elements]]></category>

		<guid isPermaLink="false">http://www.mindscapehq.com/blog/?p=6159</guid>
		<description><![CDATA[LightSpeed Fix for referencing issue on 2010/2012 which would lead to a crash on model generation if certain UDT&#8217;s or custom CLR types were involved in the model Web Workbench Handle a crash occurring within Copy Web Site dialog that is triggered by WW. Fix an issue where Add New Item context commands would not [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://imgs.xkcd.com/comics/ballmer_peak.png"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2012/05/DeveloperNotes211.png" alt="There was a keg of beer in the office today" title="There was a keg of beer in the office today" width="344" height="64" class="alignleft size-full wp-image-5007" /></a></p>
<p><strong>LightSpeed</strong></p>
<ul>
<li>Fix for referencing issue on 2010/2012 which would lead to a crash on model generation if certain UDT&#8217;s or custom CLR types were involved in the model</li>
</ul>
<p><strong>Web Workbench</strong></p>
<ul>
<li>Handle a crash occurring within Copy Web Site dialog that is triggered by WW.</li>
<li>Fix an issue where Add New Item context commands would not triggered when in sub directories of a Windows Store JavaScript project.</li>
</ul>
<p><strong>WPF Elements</strong></p>
<ul>
<li>Fix for grouping null enum columns.<br />
 <a href="http://www.mindscapehq.com/forums/thread/469903#477048">(details)</a></li>
<li>DataGrid now supports bringing a DataRow of a DataTable into view.<br />
<a href="http://www.mindscapehq.com/forums/thread/331279#480466">(details)</a></li>
<li>Resolved a minor issue caused by extending the items-changed behavior of a DataGrid.<br />
<a href="http://www.mindscapehq.com/forums/thread/331279#480650">(details)</a></li>
<li>Resolved an unusual DataGrid bug caused by a very specific usage scenario.<br />
<a href="http://www.mindscapehq.com/forums/thread/482093">(details)</a></li>
</ul>
<p>As usual the <a href="http://www.mindscapehq.com/downloads/">free editions of the nightly builds are available right now from the downloads page</a>, and the <a href="http://www.mindscapehq.com/store/myaccount">full editions from the store</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindscapehq.com/blog/index.php/2012/11/29/nightly-news-30-nov-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nightly news, 23 Nov 2012</title>
		<link>http://www.mindscapehq.com/blog/index.php/2012/11/22/nightly-news-23-nov-2012/</link>
		<comments>http://www.mindscapehq.com/blog/index.php/2012/11/22/nightly-news-23-nov-2012/#comments</comments>
		<pubDate>Fri, 23 Nov 2012 03:36:19 +0000</pubDate>
		<dc:creator>Jeremy Boyd</dc:creator>
				<category><![CDATA[Metro Elements]]></category>
		<category><![CDATA[Nightly news]]></category>
		<category><![CDATA[WPF Diagrams]]></category>
		<category><![CDATA[WPF Elements]]></category>

		<guid isPermaLink="false">http://www.mindscapehq.com/blog/?p=6132</guid>
		<description><![CDATA[WPF Diagrams Support for binding in DiagramNodeTool visuals. (details) WPF Elements Resolved a bug where sorting a hierarchical data grid was not sorting children in some scenarios. (details) Added better enum support when a DataTable or DataView is used as the ItemsSource of a DataGrid. (details) Resolved a positioning bug when calling the DataGrid.BringRowIntoView method [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://edition.cnn.com/2012/11/21/tech/innovation/witch-computer-restoration/index.html?hpt=hp_t3"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2012/05/DeveloperNotes211.png" alt="Wanted: 5+ Years experience programming with punch tape" title="Wanted: 5+ Years experience programming with punch tape" width="344" height="64" class="alignleft size-full wp-image-5007" /></a></p>
<p><strong>WPF Diagrams</strong></p>
<ul>
<li>Support for binding in DiagramNodeTool visuals.<br />
<a href="http://www.mindscapehq.com/forums/thread/466031">(details)</a></li>
</ul>
<p><strong>WPF Elements</strong></p>
<ul>
<li>Resolved a bug where sorting a hierarchical data grid was not sorting children in some scenarios.<br />
 <a href="http://www.mindscapehq.com/forums/thread/467243">(details)</a></li>
<li>Added better enum support when a DataTable or DataView is used as the ItemsSource of a DataGrid.<br />
<a href="http://www.mindscapehq.com/forums/thread/469903">(details)</a></li>
<li>Resolved a positioning bug when calling the DataGrid.BringRowIntoView method just after adding a new item.<br />
<a href="http://www.mindscapehq.com/forums/thread/331279">(details)</a></li>
</ul>
<p><strong>Metro Elements</strong></p>
<ul>
<li>Added CalendarControl.WeekNumberVisibility property<br />
<a href="http://www.mindscapehq.com/forums/thread/469611">(details)</a></li>
</ul>
<p>As usual the <a href="http://www.mindscapehq.com/downloads/">free editions of the nightly builds are available right now from the downloads page</a>, and the <a href="http://www.mindscapehq.com/store/myaccount">full editions from the store</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindscapehq.com/blog/index.php/2012/11/22/nightly-news-23-nov-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Nightly news, 9 Nov 2012</title>
		<link>http://www.mindscapehq.com/blog/index.php/2012/11/08/nightly-news-9-nov-2012/</link>
		<comments>http://www.mindscapehq.com/blog/index.php/2012/11/08/nightly-news-9-nov-2012/#comments</comments>
		<pubDate>Thu, 08 Nov 2012 21:33:58 +0000</pubDate>
		<dc:creator>Jeremy Boyd</dc:creator>
				<category><![CDATA[LightSpeed]]></category>
		<category><![CDATA[NHibernate Designer]]></category>
		<category><![CDATA[Nightly news]]></category>
		<category><![CDATA[Web Workbench]]></category>
		<category><![CDATA[WPF Elements]]></category>

		<guid isPermaLink="false">http://www.mindscapehq.com/blog/?p=6010</guid>
		<description><![CDATA[LightSpeed Fix for issue with differencing SQL generated for MySql5 &#8211; don&#8217;t emit DEFAULT &#8221; for TEXT based columns. Fix for issue with TEXT field length not being assumed as unlimited with MySql5 extractor. Fix for issue with UDT&#8217;s being used in migrations not working correctly. Dont allow through field names which are the same [...]]]></description>
				<content:encoded><![CDATA[<p><a href="http://www.petapixel.com/2011/12/09/photo-of-a-nuclear-explosion-less-than-1-millisecond-after-detonation/"><img src="http://www.mindscapehq.com/blog/wp-content/uploads/2012/05/DeveloperNotes211.png" alt="Almost rivals my old Beowulf cluster" title="Somebody set us up the bomb" width="344" height="64" class="alignleft size-full wp-image-5007" /></a></p>
<p><strong>LightSpeed</strong></p>
<ul>
<li>Fix for issue with differencing SQL generated for MySql5 &#8211; don&#8217;t emit DEFAULT &#8221; for TEXT based columns.</li>
<li>Fix for issue with TEXT field length not being assumed as unlimited with MySql5 extractor.</li>
<li>Fix for issue with UDT&#8217;s being used in migrations not working correctly.</li>
<li>Dont allow through field names which are the same as the entity name, append a custom suffix of Field in these cases.<br />
<a href="http://www.mindscapehq.com/forums/thread/447859">(details)</a></li>
<li>Fix for issue with one to one associations having lazily loaded collections (leading to deferred actions on re-assignment) if accessed via the non FK end.<br />
<a href="http://www.mindscapehq.com/forums/thread/448541">(details)</a></li>
</ul>
<p><strong>Web Workbench</strong></p>
<ul>
<li>Check and ignore error if expected string does not occur in Compass output because the Compass project is already set up in the target directory.</li>
<li>Support a user defined path to a custom maintained Ruby installation to be supplied to allow for custom gem installations.</li>
</ul>
<p><strong>NHibernate Designer</strong></p>
<ul>
<li>Correctly generate entity properties which are also FK&#8217;s as read-only.</li>
</ul>
<p><strong>WPF Elements</strong></p>
<ul>
<li>Added ConnectionPointThumb.IsConnectionDragOver property to aid in highlighting connection points.<br />
 <a href="http://www.mindscapehq.com/forums/thread/448904#450450">(details)</a></li>
<li>Added MouseWheelZoom.MaximumZoom property for capping the diagram zoom level via mouse wheel.<br />
<a href="http://www.mindscapehq.com/forums/thread/450573">(details)</a></li>
</ul>
<p>As usual the <a href="http://www.mindscapehq.com/downloads/">free editions of the nightly builds are available right now from the downloads page</a>, and the <a href="http://www.mindscapehq.com/store/myaccount">full editions from the store</a>.</p>
]]></content:encoded>
			<wfw:commentRss>http://www.mindscapehq.com/blog/index.php/2012/11/08/nightly-news-9-nov-2012/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

<!-- Performance optimized by W3 Total Cache. Learn more: http://www.w3-edge.com/wordpress-plugins/

Page Caching using disk: basic (Requested URI is rejected)
Database Caching 13/22 queries in 0.018 seconds using disk: basic

 Served from: www.mindscapehq.com @ 2013-05-22 23:41:50 by W3 Total Cache -->