ComponentFactory.Krypton.Ribbon.ViewHightlightController.ViewHightlightController C# (CSharp) Method

ViewHightlightController() public method

Initialize a new instance of the ViewHightlightController class.
public ViewHightlightController ( ViewBase target, NeedPaintHandler needPaint ) : System
target ViewBase Target for state changes.
needPaint NeedPaintHandler Delegate for notifying paint requests.
return System
        public ViewHightlightController(ViewBase target,
                                        NeedPaintHandler needPaint)
        {
            Debug.Assert(target != null);
            Debug.Assert(needPaint != null);

            _target = target;
            NeedPaint = needPaint;
        }