Hi all
I created a custom theme .. Under the "themes" folder in project there is a xaml file..... TableView.XceedDataGridTheme1.xaml ...
"XceedDataGridTheme1" is the project name.
<ResourceDictionary xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
xmlns:local="clr-namespace:XceedDataGridTheme1"
xmlns:xcdg="http://schemas.xceed.com/wpf/xaml/datagrid">
<ResourceDictionary.MergedDictionaries>
<ResourceDictionary Source="XceedDataGridTheme1;;;component\themes/XceedDataGridTheme1/TableView.XceedDataGridTheme1.xaml"/>
</ResourceDictionary.MergedDictionaries>
</ResourceDictionary>
When i reffered the theme in my application it is throwing a error ..........
"XceedDataGridTheme1;;;component\themes/XceedDataGridTheme1/TableView.XceedDataGridTheme1.xaml' value cannot be assigned to property 'Source' of object 'System.Windows.ResourceDictionary'. Cannot locate resource 'XceedDataGridTheme1;;;component\themes/XceedDataGridTheme1/TableView.XceedDataGridTheme1.xaml'. Error at object 'System.Windows.ResourceDictionary',
as far as i guess it is due ..
<ResourceDictionary
Source="XceedDataGridTheme1;;;component\themes/XceedDataGridTheme1/TableView.XceedDataGridTheme1.xaml"/>
but this is what i got by default after creation of project .. how can i resolve this ...???