コード例 #1
0
        private void CreateHierarchyEntry(Control control, int level)
        {
            HierarchyItem item = new HierarchyItem(control, level);

            m_hierarchyItems.Add(control, item);

            item.BoundControlSelected    += item_BoundControlSelected;
            item.BoundDecoratorlSelected += item_BoundDecoratorlSelected;

            m_hierarchy.AddChild(item);
        }
コード例 #2
0
ファイル: Designer.cs プロジェクト: ChelseaLing/UForms
        private void CreateHierarchyEntry( Control control, int level )
        {
            HierarchyItem item = new HierarchyItem( control, level );
            m_hierarchyItems.Add( control, item );

            item.BoundControlSelected += item_BoundControlSelected;
            item.BoundDecoratorlSelected += item_BoundDecoratorlSelected;

            m_hierarchy.AddChild( item );
        }