This question is locked. New answers and comments are not allowed.
Hi,
It is possible to persist with only the root object with the Persistence Framework ?
I have a RadExpander with many controls into it. I only want to persist the RadExpander control properties (like IsExpanded, IsEnabled), not is children controls.
For example, I want to persist IsExpanded property, not the two textboxes controls:
It is possible to persist with only the root object with the Persistence Framework ?
I have a RadExpander with many controls into it. I only want to persist the RadExpander control properties (like IsExpanded, IsEnabled), not is children controls.
For example, I want to persist IsExpanded property, not the two textboxes controls:
<telerik:RadExpander x:Name="expander" Header="My Header" IsExpanded="True" > <StackPanel Orientation="Vertical"> <TextBox Text="{Binding ExampleBinding1}" /> <TextBox Text="{Binding ExampleBinding1}" /> </StackPanel> </telerik:RadExpander>It is possible ?
Thanks