Exemplo n.º 1
0
        private void HideWpfInternals(HierarchyViewModel hierarchy)
        {
            var firstType = hierarchy.Types.First();

            foreach (var type in hierarchy.Types)
            {
                if (type == firstType)
                {
                    continue;
                }
                if (IsWpfInternalType(type))
                {
                    type.IsSelected = false;
                }
            }
        }
        private void HideWpfInternals(HierarchyViewModel hierarchy)
        {
            var firstType = hierarchy.Types.First();

            foreach (var type in hierarchy.Types)
            {
                if (type == firstType)
                {
                    continue;
                }
                if (IsWpfInternalType(type))
                {
                    type.IsSelected = false;
                }
            }
        }