IT Log

Record various IT issues and difficulties.

Tag: Custom Serialization


  • Serialization Issue When Dynamically Adding Controls in WPF Grid

    To address the serialization issue when dynamically adding controls to a WPF Grid, consider the following structured solution: Ensure Serializability of Controls: Verify that all dynamically added controls and their dependencies implement the ISerializable interface or are marked with the [Serializable] attribute if applicable. Check for any non-serializable properties (e.g., event handlers, resources) on these…