コード例 #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);
        }
コード例 #2
0
ファイル: WidgetManager.cs プロジェクト: angellcq/src
        /// <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);
        }
コード例 #3
0
ファイル: WidgetManager.cs プロジェクト: nbsrujan/acat
        /// <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);
        }
コード例 #4
0
ファイル: WidgetManager.cs プロジェクト: glwu/acat
        /// <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);
        }