BindingOperations.SetBinding(
exp, Expander.IsExpandedProperty,
new Binding()
{
Path = new PropertyPath("SelectedExpander"),
Mode = BindingMode.TwoWay,
Converter = this.TryFindResource("ExpanderToBoolConverter") as IValueConverter,
ConverterParameter = convertParameter
}
);
原文:http://www.cnblogs.com/changbaishan/p/3970615.html