Example #1
0
        /// <summary>
        /// Initializes a new instance of WidgetManager
        /// </summary>
        public WidgetManager(Control control)
        {
            _widgetAttributes = new WidgetAttributes();
            _layout           = new Layout();
            _rootWidget       = new Widget(control);

            Log.Debug("control name is : " + control.Name);
            Log.Debug("_rootWidget.name is  : " + _rootWidget.Name);
        }
Example #2
0
        /// <summary>
        /// Initializes a new instance of WidgetManager
        /// </summary>
        public WidgetManager(Control control)
        {
            if (_widgetTypeCollection == null)
            {
                _widgetTypeCollection = loadWidgetTypeCollection();
            }

            _widgetAttributes = new WidgetAttributes();
            _layout           = new Layout();
            _rootWidget       = new Widget(control);

            Log.Debug("control name is : " + control.Name);
            Log.Debug("_rootWidget.name is  : " + _rootWidget.Name);
        }
Example #3
0
        /// <summary>
        /// Initializes a new instance of WidgetManager
        /// </summary>
        public WidgetManager(Control control)
        {
            if (_widgetTypeCollection == null)
            {
                _widgetTypeCollection = loadWidgetTypeCollection();
            }

            _widgetAttributes = new WidgetAttributes();
            _layout = new Layout();
            _rootWidget = new Widget(control);

            Log.Debug("control name is : " + control.Name);
            Log.Debug("_rootWidget.name is  : " + _rootWidget.Name);
        }
Example #4
0
        /// <summary>
        /// Initializes a new instance of WidgetManager
        /// </summary>
        public WidgetManager(Control control)
        {
            _widgetAttributes = new WidgetAttributes();
            _layout = new Layout();
            _rootWidget = new Widget(control);

            Log.Debug("control name is : " + control.Name);
            Log.Debug("_rootWidget.name is  : " + _rootWidget.Name);
        }