Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

1
vote
0answers
160 views

Ignoring non-serializable objects in XamlWriter.Save

I have a bunch of WPF controls that needs to be dumped to xaml. Some controls contain non-serializable objects stored in their's Tag property. I need to ignore them during saving Xaml, since I need ...
0
votes
0answers
40 views

XamlServices incorrectly serialises Enum values

Synopsis XamlServices is incorrectly serialising properties typed as object and containing enum values. Background CasEdit is a C# namespace in my application, CasSettingPage is an enum and ...
0
votes
1answer
139 views

Serialization Issue with WF4

I have a peculiar issue with a variable in my workflow service. It is an array of a datacontract from a REST service, ContactContract[]. When this array is empty everything is great and the workflow ...
0
votes
2answers
167 views

XAMLWriter fails for DataGrid columns

I am using XAMLWriter to serialize some controls. It works well for other controls, but not for DataGrid. First thing, it can not serialize DataGrid columns, which is very annoying(if somebody has a ...
0
votes
1answer
140 views

TextDecorationCollection serialization in WPF

Is there any xaml serialization attribute that I can specify for a dependency property which actually is a collection (TextDecorationCollection)? I want to use serialization for cloning a very large ...
-2
votes
2answers
385 views

Xaml serialization and immutable structs?

How can I do this? Tried using a TypeConverter, but the only thing I could think of was to construct the XML for the types, which doesn't quite cut it. TypeConverters in xaml serialization will ...