This question is locked. New answers and comments are not allowed.
I am using ContainerBinding to bind some properties to a RadMenuItem like this....
Is there any way to attach events, for example the "Loaded" event through ContainerBinding? Something like this would be ideal...
<Rad:ContainerBinding.ContainerBindings> <Rad:ContainerBindingCollection> <Rad:ContainerBinding PropertyName="Icon" Binding="{Binding VectorXaml}" /> <Rad:ContainerBinding PropertyName="IsEnabled" Binding="{Binding IsEnabled}" /> </Rad:ContainerBindingCollection> </Rad:ContainerBinding.ContainerBindings>Is there any way to attach events, for example the "Loaded" event through ContainerBinding? Something like this would be ideal...
<Rad:ContainerBinding.ContainerBindings> <Rad:ContainerBindingCollection> <Rad:ContainerBinding PropertyName="Loaded" Binding="{Binding SomeFunction}" /> </Rad:ContainerBindingCollection> </Rad:ContainerBinding.ContainerBindings>