<?xml version="1.0" encoding="UTF-8" ?>
<?xml-stylesheet type="text/xsl" href="http://community.devexpress.com/utility/FeedStylesheets/rss.xsl" media="screen"?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:wfw="http://wellformedweb.org/CommentAPI/"><channel><title>The Progress Bar - DevExpress XPF Blog - All Comments</title><link>http://community.devexpress.com/blogs/theprogressbar/default.aspx</link><description /><dc:language>en</dc:language><generator>CommunityServer 2007.1 SP1 (Build: 30415.43)</generator><item><title>WPF Data Grid Control – PLINQ Data Support</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/03/01/wpf-grid-control-and-the-new-instant-feedback-ui-mode-coming-in-v2011-1.aspx#352311</link><pubDate>Mon, 22 Aug 2011 20:53:55 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:352311</guid><dc:creator>The Progress Bar - DevExpress XPF Blog</dc:creator><description>&lt;p&gt;Starting with the latest v2011 vol1 update (11.1.7), we have introduced PLINQ data source support for&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=352311" width="1" height="1"&gt;</description></item><item><title>re: MVVM Enhancements in WPF and Silverlight versions of Toolbar, Ribbon and Gallery Controls</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/08/03/mvvm-enhancements-in-wpf-and-silverlight-versions-of-toolbar-menu-and-gallery-controls.aspx#351736</link><pubDate>Mon, 15 Aug 2011 14:52:09 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:351736</guid><dc:creator>Brian Cook</dc:creator><description>&lt;p&gt;I love this. &amp;nbsp;It will make my development easier. &amp;nbsp;Thanks!&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=351736" width="1" height="1"&gt;</description></item><item><title>MVVM Enhancements in WPF and Silverlight versions of Toolbar, Menu and Gallery Controls</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/07/19/wpf-and-silverlight-data-grid-mvvm-enhancements.aspx#351026</link><pubDate>Wed, 03 Aug 2011 20:42:02 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:351026</guid><dc:creator>The Progress Bar - DevExpress XPF Blog</dc:creator><description>&lt;p&gt;In my previous blog post , I introduced the enhanced MVVM support for our WPF &amp;amp; Silverlight Data&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=351026" width="1" height="1"&gt;</description></item><item><title>re: WPF and Silverlight Data Grid – MVVM Enhancements</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/07/19/wpf-and-silverlight-data-grid-mvvm-enhancements.aspx#350145</link><pubDate>Thu, 21 Jul 2011 06:28:37 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:350145</guid><dc:creator>Andrew L (DevExpress Support)</dc:creator><description>&lt;p&gt;Hello&lt;/p&gt;
&lt;p&gt;It is not possible to set a value in the CurrentRow property directly to prevent FocusedRow from being changed.&lt;/p&gt;
&lt;p&gt;I believe that you can use a static dispatcher to accomplish this task:&lt;/p&gt;
&lt;p&gt;Silverlight&lt;/p&gt;
&lt;p&gt; &amp;nbsp;public object CurrentRow {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; get { return currentRow; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; set {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; prevRow = currentRow as DataItem;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DataItem item = value as DataItem;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; currentRow = value;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; RaisePropertyChanged(&amp;quot;CurrentRow&amp;quot;);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Application.Current.RootVisual.Dispatcher.BeginInvoke(() =&amp;gt; {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(item.Id % 2 == 0)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CurrentRow = prevRow;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; });&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/p&gt;
&lt;p&gt;WPF &lt;/p&gt;
&lt;p&gt; public object CurrentRow {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; get { return currentRow; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; set {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; prevRow = currentRow as DataItem;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; DataItem item = value as DataItem;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; currentRow = item;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; RaisePropertyChanged(&amp;quot;CurrentRow&amp;quot;);&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; Dispatcher.CurrentDispatcher.BeginInvoke(new Action(() =&amp;gt; {&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; if(currentRow != null &amp;amp;&amp;amp; currentRow.Id % 2 == 0)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; CurrentRow = prevRow;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }));&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; }&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=350145" width="1" height="1"&gt;</description></item><item><title>re: WPF and Silverlight Data Grid – MVVM Enhancements</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/07/19/wpf-and-silverlight-data-grid-mvvm-enhancements.aspx#350113</link><pubDate>Wed, 20 Jul 2011 18:36:15 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:350113</guid><dc:creator>Josh Einstein</dc:creator><description>&lt;p&gt;Whoo hoo! It&amp;#39;s getting there! This means I can gut out a lot of my custom code that reads data annotations which is a good thing. I love throwing out code.&lt;/p&gt;
&lt;p&gt;It would be great if the grid had knowledge of CollectionViewSource (see Q223251), including its sort descriptors, grouping, and filtering. Then we can finally have a true separation of behavior and presentation.&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=350113" width="1" height="1"&gt;</description></item><item><title>re: WPF and Silverlight Data Grid – MVVM Enhancements</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/07/19/wpf-and-silverlight-data-grid-mvvm-enhancements.aspx#350039</link><pubDate>Wed, 20 Jul 2011 06:09:34 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:350039</guid><dc:creator>Nathan (DevExpress)</dc:creator><description>&lt;p&gt;This will be the subject of an upcoming blog post.&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=350039" width="1" height="1"&gt;</description></item><item><title>re: WPF and Silverlight Data Grid – MVVM Enhancements</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/07/19/wpf-and-silverlight-data-grid-mvvm-enhancements.aspx#350026</link><pubDate>Tue, 19 Jul 2011 21:09:11 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:350026</guid><dc:creator>A.W. Vershinin</dc:creator><description>&lt;p&gt;That&amp;#39;s nice! But can you show how to bind to FocusedRow property and I need logic in ViewModel property to prevent FocusedRow changing? Some thing like that:&lt;/p&gt;
&lt;p&gt;CurrentRow&lt;/p&gt;
&lt;p&gt;{get{...}&lt;/p&gt;
&lt;p&gt;set{&lt;/p&gt;
&lt;p&gt; &amp;nbsp; if(currentRow.HasErrors())&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; return;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; currentRow = value;&lt;/p&gt;
&lt;p&gt; &amp;nbsp; RaisePropertyChanged(........);&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;p&gt;}&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=350026" width="1" height="1"&gt;</description></item><item><title>re: WPF and Silverlight Data Grid – MVVM Enhancements</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/07/19/wpf-and-silverlight-data-grid-mvvm-enhancements.aspx#350023</link><pubDate>Tue, 19 Jul 2011 19:38:15 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:350023</guid><dc:creator>Richard Sykora</dc:creator><description>&lt;p&gt;Great! More MVVM pls ;o)&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=350023" width="1" height="1"&gt;</description></item><item><title>re: Silverlight Grid Control - Data Binding Series – Part 1</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2010/07/29/silverlight-grid-control-data-binding-part-1.aspx#349380</link><pubDate>Tue, 12 Jul 2011 09:23:32 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:349380</guid><dc:creator>Boris Soto</dc:creator><description>&lt;p&gt;Please translate the code to vb as well, if convert this code on the main windows It does not work in VB I get followinfg errors on Populate Grid and GridControl1&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Public Sub New()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;InitializeComponent()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;populateGrid()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End Sub&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Private Sub populateGrid()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Dim loadOperation As LoadOperation(Of tblEmployee) = _EmployeeContext.Load(_EmployeeContext.GetTblEmployeesQuery())&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Gridcontrol1 = loadOperation.Entities&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End Sub&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Private Sub tableView_HiddenEditor(sender As Object, e As DevExpress.Xpf.Grid.EditorEventArgs)&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;If e.Column.FieldName &amp;lt;&amp;gt; &amp;quot;EmployeeName&amp;quot; Then&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;Return&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End If&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;gridControl1.View.CommitEditing()&lt;/p&gt;
&lt;p&gt; &amp;nbsp; &amp;nbsp; &amp;nbsp; &amp;nbsp;End Sub&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=349380" width="1" height="1"&gt;</description></item><item><title>re: Silverlight and WPF Splash Screen</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/05/12/silverlight-and-wpf-splash-screen-coming-v2011-1.aspx#347400</link><pubDate>Thu, 16 Jun 2011 18:40:55 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:347400</guid><dc:creator>Sergey Butenko</dc:creator><description>&lt;p&gt;+1 for Windows Forms Splash Screen Support&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=347400" width="1" height="1"&gt;</description></item><item><title>re: Silverlight and WPF Splash Screen – Coming v2011.1</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/05/12/silverlight-and-wpf-splash-screen-coming-v2011-1.aspx#345989</link><pubDate>Mon, 30 May 2011 23:15:28 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:345989</guid><dc:creator>Oleg Grodzevich</dc:creator><description>&lt;p&gt;+1 for Windows Forms Splash Screen Support&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=345989" width="1" height="1"&gt;</description></item><item><title>re: Silverlight and WPF Grid – Group Intervals for DateTime Columns in Server Mode (Coming v2011.1)</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/05/10/silverlight-and-wpf-grid-group-intervals-for-datetime-columns-in-server-mode-coming-v2011-1.aspx#345914</link><pubDate>Mon, 30 May 2011 04:20:26 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:345914</guid><dc:creator>Paul Harrington</dc:creator><description>&lt;p&gt;I am always amazed at developers demanding release to a schedule. I would much rather a late and robust product than a product released to a specific date but either missing an advertised feature because it didn&amp;#39;t make the date or the release is rushed comprimising quality. In my expreince a customer will forgive and forget if you are late they almost never forgive or forget a lack of quality. &amp;nbsp;Please DevExpress only release when it is ready.&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=345914" width="1" height="1"&gt;</description></item><item><title>re: Silverlight and WPF Splash Screen – Coming v2011.1</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/05/12/silverlight-and-wpf-splash-screen-coming-v2011-1.aspx#344940</link><pubDate>Thu, 19 May 2011 06:48:13 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:344940</guid><dc:creator>Philippe Weiss</dc:creator><description>&lt;p&gt;+1 for Windows Forms Splash Screen Support&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=344940" width="1" height="1"&gt;</description></item><item><title>re: Silverlight and WPF Splash Screen – Coming v2011.1</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/05/12/silverlight-and-wpf-splash-screen-coming-v2011-1.aspx#344597</link><pubDate>Mon, 16 May 2011 13:13:01 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:344597</guid><dc:creator>Devin Grant</dc:creator><description>&lt;p&gt;+1 for Windows Forms Splash Screen Support&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=344597" width="1" height="1"&gt;</description></item><item><title>re: Silverlight and WPF Splash Screen – Coming v2011.1</title><link>http://community.devexpress.com/blogs/theprogressbar/archive/2011/05/12/silverlight-and-wpf-splash-screen-coming-v2011-1.aspx#344538</link><pubDate>Sun, 15 May 2011 13:11:41 GMT</pubDate><guid isPermaLink="false">bd716303-653c-428d-8b8a-a7d998cde032:344538</guid><dc:creator>Walter Nusser</dc:creator><description>&lt;p&gt;+1 for Windows Forms Splash Screen Support&lt;/p&gt;
&lt;img src="http://community.devexpress.com/aggbug.aspx?PostID=344538" width="1" height="1"&gt;</description></item></channel></rss>
