Code:
/ 4.0 / 4.0 / untmp / DEVDIV_TFS / Dev10 / Releases / RTMRel / ndp / cdf / src / NetFx40 / Tools / System.Activities.Core.Presentation / System / Activities / Core / Presentation / Connector.xaml.cs / 1305376 / Connector.xaml.cs
//------------------------------------------------------------ // Copyright (c) Microsoft Corporation. All rights reserved. //----------------------------------------------------------- namespace System.Activities.Core.Presentation { using System.Windows; using System.Windows.Controls; using System.Windows.Media; using System.Diagnostics.CodeAnalysis; using System.Runtime; partial class Connector : UserControl { //Label will be shown only if there is one segment in the connector whose length is greater than this. internal const int MinConnectorSegmentLengthForLabel = 30; public static readonly DependencyProperty PointsProperty = DependencyProperty.Register("Points", typeof(PointCollection), typeof(Connector), new FrameworkPropertyMetadata(new PointCollection())); public static readonly DependencyProperty IsSelectedProperty = DependencyProperty.Register("IsSelected", typeof(bool), typeof(Connector), new FrameworkPropertyMetadata(false)); public static readonly DependencyProperty LabelTextProperty = DependencyProperty.Register("LabelText", typeof(string), typeof(Connector), new FrameworkPropertyMetadata(null)); public static readonly DependencyProperty IdentityProperty = DependencyProperty.Register("Identity", typeof(Guid), typeof(Connector)); public const double ArrowShapeWidth = 5; public Connector() { InitializeComponent(); this.Loaded += (sender, e) => { this.Identity = Guid.NewGuid(); }; } [SuppressMessage("Microsoft.Usage", "CA2227:CollectionPropertiesShouldBeReadOnly", Justification = "PointCollection is a special WPF class and got special Clone logic, the setter of this property is used several places.")] public PointCollection Points { get { return (PointCollection)GetValue(Connector.PointsProperty); } set { SetValue(Connector.PointsProperty, value); } } public bool IsSelected { get { return (bool)GetValue(Connector.IsSelectedProperty); } set { SetValue(Connector.IsSelectedProperty, value); } } public string LabelText { get { return (string)GetValue(Connector.LabelTextProperty); } set { SetValue(Connector.LabelTextProperty, value); } } public Guid Identity { get { return (Guid)GetValue(Connector.IdentityProperty); } set { SetValue(Connector.IdentityProperty, value); } } } } // 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
- ToolboxItem.cs
- SqlIdentifier.cs
- LineBreakRecord.cs
- AnonymousIdentificationSection.cs
- ProviderConnectionPoint.cs
- ManifestResourceInfo.cs
- SiteMapPath.cs
- XmlSchemaObjectCollection.cs
- TextElement.cs
- Vector.cs
- FileDialog_Vista.cs
- DesignerSerializerAttribute.cs
- TextBoxLine.cs
- MiniParameterInfo.cs
- PreservationFileWriter.cs
- DialogResultConverter.cs
- TargetPerspective.cs
- SafeFindHandle.cs
- CrossSiteScriptingValidation.cs
- FilterRepeater.cs
- EdmToObjectNamespaceMap.cs
- Html32TextWriter.cs
- Column.cs
- PrimaryKeyTypeConverter.cs
- MessageQueuePermissionEntryCollection.cs
- EntitySqlQueryBuilder.cs
- QuaternionAnimation.cs
- ErrorsHelper.cs
- PersonalizationState.cs
- DecimalStorage.cs
- Icon.cs
- ReadOnlyHierarchicalDataSource.cs
- DesignerActionKeyboardBehavior.cs
- Activator.cs
- EventLogEntry.cs
- UnmanagedHandle.cs
- Char.cs
- Invariant.cs
- HttpModule.cs
- MulticastDelegate.cs
- BevelBitmapEffect.cs
- ILGenerator.cs
- OleDbEnumerator.cs
- EncoderParameters.cs
- LogicalTreeHelper.cs
- ValidationError.cs
- XmlHelper.cs
- PersistChildrenAttribute.cs
- Column.cs
- TextContainerChangeEventArgs.cs
- ScriptResourceInfo.cs
- XPathDocumentNavigator.cs
- AnnotationMap.cs
- TransactionTable.cs
- HtmlInputRadioButton.cs
- QueryContinueDragEvent.cs
- SqlClientFactory.cs
- ThousandthOfEmRealDoubles.cs
- XmlSchemaSimpleType.cs
- Mouse.cs
- ConfigurationLoader.cs
- SqlDataSourceTableQuery.cs
- NodeFunctions.cs
- XmlSequenceWriter.cs
- UInt64Converter.cs
- ContextMenuStripGroupCollection.cs
- DecimalAnimationBase.cs
- MenuItem.cs
- EntityContainer.cs
- OneOf.cs
- HotSpotCollection.cs
- SectionInput.cs
- DbConvert.cs
- EntityAdapter.cs
- HttpCapabilitiesEvaluator.cs
- HttpWebRequest.cs
- ZoomPercentageConverter.cs
- AdornerHitTestResult.cs
- HMAC.cs
- SudsCommon.cs
- HtmlElementCollection.cs
- OnOperation.cs
- Evidence.cs
- Parser.cs
- TreeNodeClickEventArgs.cs
- Activator.cs
- PasswordRecovery.cs
- ValidationUtility.cs
- FlowDocument.cs
- Quaternion.cs
- ViewManager.cs
- TextMetrics.cs
- AppDomainFactory.cs
- HttpContextBase.cs
- InstanceContextMode.cs
- TextInfo.cs
- ControlCollection.cs
- DataControlFieldCell.cs
- DataControlButton.cs
- OdbcUtils.cs