Il y a quelques grandes réponses ici. Très utile. J'avais essayé différentes approches pour la copie des informations de Liaison, y compris l'approche décrite dans http://pjlcon.wordpress.com/2011/01/14/change-a-wpf-binding-from-sync-to-async-programatically/ mais l'information ici est le meilleur sur Internet!
J'ai créé un ré-utilisable de la méthode d'extension pour traiter InvalidOperationException "Liaison ne peut pas être changé après qu'il a été utilisé." Dans mon scénario, j'ai été le maintien du code quelqu'un a écrit, et après une importante DevExpress DXGrid cadre de la mise à niveau, il ne travaillait plus. Le suivant a résolu mon problème à la perfection. La partie du code où je retourne l'objet pourrait être plus agréable, et je vais re-facteur que plus tard.
/// <summary>
/// Extension methods for the WPF Binding class.
/// </summary>
public static class BindingExtensions
{
public static BindingBase CloneViaXamlSerialization(this BindingBase binding)
{
var sb = new StringBuilder();
var writer = XmlWriter.Create(sb, new XmlWriterSettings
{
Indent = true,
ConformanceLevel = ConformanceLevel.Fragment,
OmitXmlDeclaration = true,
NamespaceHandling = NamespaceHandling.OmitDuplicates,
});
var mgr = new XamlDesignerSerializationManager(writer);
// HERE BE MAGIC!!!
mgr.XamlWriterMode = XamlWriterMode.Expression;
// THERE WERE MAGIC!!!
System.Windows.Markup.XamlWriter.Save(binding, mgr);
StringReader stringReader = new StringReader(sb.ToString());
XmlReader xmlReader = XmlReader.Create(stringReader);
object newBinding = (object)XamlReader.Load(xmlReader);
if (newBinding == null)
{
throw new ArgumentNullException("Binding could not be cloned via Xaml Serialization Stack.");
}
if (newBinding is Binding)
{
return (Binding)newBinding;
}
else if (newBinding is MultiBinding)
{
return (MultiBinding)newBinding;
}
else if (newBinding is PriorityBinding)
{
return (PriorityBinding)newBinding;
}
else
{
throw new InvalidOperationException("Binding could not be cast.");
}
}
}