ForEachDesigner.xaml.cs source code in C# .NET

Source code for the .NET framework in C#

                        

Code:

/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Core.Presentation / System / Activities / Core / Presentation / ForEachDesigner.xaml.cs / 1305376 / ForEachDesigner.xaml.cs

                            //---------------------------------------------------------------- 
// Copyright (c) Microsoft Corporation.  All rights reserved.
//---------------------------------------------------------------

namespace System.Activities.Core.Presentation 
{
    using System; 
    using System.Activities; 
    using System.Activities.Statements;
    using System.Activities.Presentation.Metadata; 
    using System.Activities.Presentation.Model;
    using System.Activities.Presentation.View;
    using System.Collections;
    using System.Collections.Generic; 
    using System.ComponentModel;
    using System.Diagnostics; 
    using System.Windows; 
    using System.Runtime;
    using System.Activities.Presentation; 
    using System.Reflection;

    /// 
    /// Interaction logic for ForEachDesigner.xaml 
    /// 
    partial class ForEachDesigner 
    { 
        public ForEachDesigner()
        { 
            InitializeComponent();
        }

        public static void RegisterMetadata(AttributeTableBuilder builder) 
        {
            Type[] types = new Type[] 
            { 
                typeof(System.Activities.Statements.ForEach<>),
                typeof(System.Activities.Statements.ParallelForEach<>) 
            };

            foreach (Type type in types)
            { 
                builder.AddCustomAttributes(type, new DesignerAttribute(typeof(ForEachDesigner)));
                builder.AddCustomAttributes(type, type.GetProperty("Body"), BrowsableAttribute.No); 
            } 

            builder.AddCustomAttributes(typeof(System.Activities.Statements.ForEach<>), new FeatureAttribute(typeof(UpdatableGenericArgumentsFeature))); 
            builder.AddCustomAttributes(typeof(System.Activities.Statements.ParallelForEach<>), new FeatureAttribute(typeof(UpdatableGenericArgumentsFeature)));
            builder.AddCustomAttributes(typeof(System.Activities.Core.Presentation.Factories.ForEachWithBodyFactory<>), new DefaultTypeArgumentAttribute(typeof(int)));
            builder.AddCustomAttributes(typeof(System.Activities.Core.Presentation.Factories.ParallelForEachWithBodyFactory<>), new DefaultTypeArgumentAttribute(typeof(int)));
 
        }
 
        void OnValuesBoxLoaded(object sender, RoutedEventArgs e) 
        {
            ExpressionTextBox etb = sender as ExpressionTextBox; 
            Fx.Assert(null != etb, "sender should not be null!");
            etb.ExpressionType = typeof(IEnumerable<>).MakeGenericType(this.ModelItem.ItemType.GetGenericArguments());
        }
    } 
}

// File provided for Reference Use Only by Microsoft Corporation (c) 2007.


                        

Link Menu

Network programming in C#, Network Programming in VB.NET, Network Programming in .NET
This book is available now!
Buy at Amazon US or
Buy at Amazon UK