I followed the documentaion to complete the serlialize.I set a custom ContentTemplate for Node, but serlialize was unsuccessful after setting the ContentTemplate in the .cs file. The code is follow:
ContentTemplate = App.Current.Resources["myTemplate"] as DataTemplate
But if I set ContentTemplate use <Style> and <Setter> tags in xaml file, the serlialize is works well. The code is follow:
<Style TargetType="Syncfusion:Node">
<Setter Property="ContentTemplate" Value="{StaticResource myTemplate}" />
</Style>