Esempio n. 1
0
        // Subscribe and unsubscribe the control events you wish to expose.
        protected override void OnSubscribeControlEvents(Control c)
        {
            // Call the base so the base events are connected.
            base.OnSubscribeControlEvents(c);

            Click2CallControl callControl = (Click2CallControl)c;

            // Add the event.
            callControl.Call +=
                new Click2CallControl.CallEventHandler(OnClick2Call);
        }
Esempio n. 2
0
        protected override void OnUnsubscribeControlEvents(Control c)
        {
            // Call the base method so the basic events are unsubscribed.
            base.OnUnsubscribeControlEvents(c);

            // Cast the control to a MonthCalendar control.
            Click2CallControl callControl = (Click2CallControl)c;

            // Remove the event.
            callControl.Call -=
                new Click2CallControl.CallEventHandler(OnClick2Call);
        }