18 references to FrameworkPropertyMetadata
PresentationFramework (3)
src\Framework\System\Windows\FrameworkPropertyMetadata.cs (1)
560
return new
FrameworkPropertyMetadata
();
src\Framework\System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
4571
bamlType.DefaultConstructor = delegate() { return new System.Windows.
FrameworkPropertyMetadata
(); };
src\Framework\System\Windows\Markup\KnownTypes.cs (1)
1289
case KnownElements.FrameworkPropertyMetadata: o = new System.Windows.
FrameworkPropertyMetadata
(); break;
System.Activities.Core.Presentation (12)
System\Activities\Core\Presentation\FlowchartDesigner.xaml.cs (7)
35
public static readonly DependencyProperty ConnectionPointsProperty = DependencyProperty.RegisterAttached("ConnectionPoints", typeof(List<ConnectionPoint>), typeof(FlowchartDesigner), new
FrameworkPropertyMetadata
());
36
public static readonly DependencyProperty LinkModelItemProperty = DependencyProperty.RegisterAttached("LinkModelItem", typeof(ModelItem), typeof(FlowchartDesigner), new
FrameworkPropertyMetadata
());
37
public static readonly DependencyProperty FlowElementModelItemProperty = DependencyProperty.RegisterAttached("FlowElementModelItem", typeof(ModelItem), typeof(FlowchartDesigner), new
FrameworkPropertyMetadata
());
39
public static readonly DependencyProperty FlowchartWidthProperty = DependencyProperty.Register("FlowchartWidth", typeof(double), typeof(FlowchartDesigner), new
FrameworkPropertyMetadata
());
40
public static readonly DependencyProperty FlowchartHeightProperty = DependencyProperty.Register("FlowchartHeight", typeof(double), typeof(FlowchartDesigner), new
FrameworkPropertyMetadata
());
42
public static readonly DependencyProperty TrueConnectionPointProperty = DependencyProperty.RegisterAttached("TrueConnectionPoint", typeof(ConnectionPoint), typeof(FlowchartDesigner), new
FrameworkPropertyMetadata
());
43
public static readonly DependencyProperty FalseConnectionPointProperty = DependencyProperty.RegisterAttached("FalseConnectionPoint", typeof(ConnectionPoint), typeof(FlowchartDesigner), new
FrameworkPropertyMetadata
());
System\Activities\Core\Presentation\StateContainerEditor.xaml.cs (5)
150
new
FrameworkPropertyMetadata
());
156
new
FrameworkPropertyMetadata
());
162
new
FrameworkPropertyMetadata
());
168
new
FrameworkPropertyMetadata
());
174
new
FrameworkPropertyMetadata
());
System.Activities.Presentation (3)
System.Activities.Presentation\System\Activities\Presentation\FreeFormEditing\FreeFormPanel.cs (3)
24
public static readonly DependencyProperty ChildSizeProperty = DependencyProperty.RegisterAttached("ChildSize", typeof(Size), typeof(FreeFormPanel), new
FrameworkPropertyMetadata
());
28
public static readonly DependencyProperty DestinationConnectionPointProperty = DependencyProperty.RegisterAttached("DestinationConnectionPoint", typeof(ConnectionPoint), typeof(FreeFormPanel), new
FrameworkPropertyMetadata
());
29
public static readonly DependencyProperty SourceConnectionPointProperty = DependencyProperty.RegisterAttached("SourceConnectionPoint", typeof(ConnectionPoint), typeof(FreeFormPanel), new
FrameworkPropertyMetadata
());