wpftoolkit - Extended Wpf Toolkit: TableView.Theme broken in version 2.4? -


having installed "extended wpf toolkit" (community edition) via nuget in visual studio 2013 professional in project, update attempt current version 2.4 causing system.windows.markup.xamlparseexception @ runtime same code worked in version 2.3 here.

as turned out, exception being caused xcdg:tableview theme property assignment, see repro sample pasted below.

and removing assignment cure symptom.

since unable find on issue in web, actual question whether there way apply datagridcontrol / tableview themes "extended wpf toolkit" community edition version 2.4?

the following simplified version reproduces issue me in mainwindow.xaml of "test" project after having installed current version 2.4 of extended wpf toolkit via nuget , starting via f5 key:

<window x:class="testxceed24.mainwindow"         xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"         xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"         xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid"         title="mainwindow" height="350" width="525">     <grid>         <xcdg:datagridcontrol>             <xcdg:datagridcontrol.view>                 <xcdg:tableview theme="zunenormalcolortheme"/>             </xcdg:datagridcontrol.view>         </xcdg:datagridcontrol>     </grid> </window> 

fwiw, cross-check, downgrading extended.wpf.toolkit version via package manager console apparently cures symptom here:

pm> update-package extended.wpf.toolkit -version 2.3.0 


Comments

Popular posts from this blog

asp.net mvc - SSO between MVCForum and Umbraco7 -

Python Tkinter keyboard using bind -

ubuntu - Selenium Node Not Connecting to Hub, Not Opening Port -