ACAT.Extensions.Default.UI.Dialogs.ScreenLockForm.subscribeToEvents C# (CSharp) Method

subscribeToEvents() private method

Subscribes to all the events triggered by the widgets and the interpreter
private subscribeToEvents ( ) : void
return void
        private void subscribeToEvents()
        {
            var buttonList = new List<Widget>();
            _rootWidget.Finder.FindChild(typeof(LabelWidget), buttonList);

            foreach (var widget in buttonList)
            {
                widget.EvtActuated += widget_EvtActuated;
            }
        }