I am using controls in my WPF window, and based on user interaction, I have to subscribe different controls ValueChanged/VisibilityChanged events. Is there any to check whether event is already subscribed or not, so that I should not subscribe it again.
Actually I am looking for a best practice for event subscription so that an object can only subscribe an event of other object once only.