I got version 3.0. The solution built successfully, however I'm getting a runtime error:
System.Windows.Markup.XamlParseException was unhandled
Message="Cannot find resource named '{mergedRowStyle}'. Resource names are case sensitive. Error at object 'XceedTest.MergedRow' in markup file 'XceedTest;component/window1.xaml' Line 172 Position 46."
Source="PresentationFramework"
LineNumber=172
LinePosition=46
Says it is unable to find mergedRowStyle. I've added the 4 files(MergedRow.cs, MergedCell.cs, Common.xaml and MergedRow.xaml) and changed the namespaces from FileExplorer to XceedTest which is the name of my solution.
Not sure what's going wrong here, seems like its not able to find mergedRowStyle.
The line in window1.xaml that's causing the problem is:
<DataTemplate>
<local:MergedRow Style="{StaticResource mergedRowStyle}" Text="Hello World"/>
</DataTemplate>
Is there anything else I need to do?
Thanks,
Sidharth