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

This book is available now!
Buy at Amazon US or
Buy at Amazon UK
- ControlTemplate.cs
- Compiler.cs
- ConstructorExpr.cs
- FormParameter.cs
- SocketAddress.cs
- ObjRef.cs
- XmlRootAttribute.cs
- LocationUpdates.cs
- UserControl.cs
- Task.cs
- ElementNotEnabledException.cs
- FormsAuthenticationCredentials.cs
- MULTI_QI.cs
- FlowDocumentView.cs
- SQLSingle.cs
- GeneralTransform2DTo3D.cs
- VirtualPath.cs
- AutomationElementCollection.cs
- SystemIPInterfaceStatistics.cs
- DocumentSequence.cs
- OdbcConnectionStringbuilder.cs
- EncoderNLS.cs
- ContractsBCL.cs
- XmlChildNodes.cs
- FlowDocumentFormatter.cs
- XmlObjectSerializer.cs
- LogManagementAsyncResult.cs
- ConfigurationSchemaErrors.cs
- InputScope.cs
- DigestComparer.cs
- ProfileModule.cs
- ObjectTokenCategory.cs
- DocumentSchemaValidator.cs
- Transactions.cs
- XmlStreamStore.cs
- ReliabilityContractAttribute.cs
- InvokeFunc.cs
- ResourcePool.cs
- DataContractSerializerServiceBehavior.cs
- MethodImplAttribute.cs
- DataColumnPropertyDescriptor.cs
- SafeWaitHandle.cs
- SetIterators.cs
- XmlFormatExtensionAttribute.cs
- SchemaTableColumn.cs
- PrintingPermission.cs
- DoubleLink.cs
- DataTrigger.cs
- SqlDataSourceCommandEventArgs.cs
- HandlerBase.cs
- KeyedByTypeCollection.cs
- PerformanceCounterPermissionEntryCollection.cs
- EventData.cs
- UniformGrid.cs
- IndexedString.cs
- ReaderWriterLock.cs
- TypefaceMetricsCache.cs
- ShapingEngine.cs
- InternalConfigHost.cs
- ImageAnimator.cs
- ManipulationStartingEventArgs.cs
- SplineKeyFrames.cs
- RewritingProcessor.cs
- SessionStateUtil.cs
- DataGridViewComboBoxEditingControl.cs
- TimeSpanMinutesOrInfiniteConverter.cs
- SurrogateDataContract.cs
- Viewport3DAutomationPeer.cs
- WebPartManager.cs
- ExecutionContext.cs
- UrlMappingsModule.cs
- _Connection.cs
- ToolStripPanelCell.cs
- WebMessageFormatHelper.cs
- ProbeDuplexAsyncResult.cs
- Renderer.cs
- SqlConnectionPoolProviderInfo.cs
- NameValueFileSectionHandler.cs
- TransactedBatchingBehavior.cs
- SqlDataSourceConfigureSelectPanel.cs
- TypedTableBaseExtensions.cs
- PeerToPeerException.cs
- IndexOutOfRangeException.cs
- GridPattern.cs
- FaultBookmark.cs
- WsdlImporterElement.cs
- DesignTimeResourceProviderFactoryAttribute.cs
- InvalidOleVariantTypeException.cs
- UserPreference.cs
- ExecutionContext.cs
- _TLSstream.cs
- SystemResources.cs
- EntityAdapter.cs
- SubclassTypeValidator.cs
- SocketException.cs
- TreeNodeClickEventArgs.cs
- MenuCommandService.cs
- DataSourceHelper.cs
- CompatibleComparer.cs
- AddInServer.cs