BindingOperations.SetBinding(
                exp, Expander.IsExpandedProperty,
                new Binding()
                {
                    Path = new PropertyPath("SelectedExpander"),
                    Mode = BindingMode.TwoWay,
                    Converter = this.TryFindResource("ExpanderToBoolConverter") as IValueConverter,
                    ConverterParameter = convertParameter
                }
            );