29 references to TemplateBindingExtension
PresentationFramework (28)
System\Windows\Controls\ContentPresenter.cs (2)
56text.SetValue(AccessText.TextProperty, new TemplateBindingExtension(ContentProperty)); 64text.SetValue(TextBlock.TextProperty, new TemplateBindingExtension(ContentProperty));
System\Windows\Controls\ScrollViewer.cs (11)
2695grid.SetValue(Grid.BackgroundProperty, new TemplateBindingExtension(BackgroundProperty)); 2712content.SetValue(ContentPresenter.MarginProperty, new TemplateBindingExtension(PaddingProperty)); 2713content.SetValue(ContentProperty, new TemplateBindingExtension(ContentProperty)); 2714content.SetValue(ContentTemplateProperty, new TemplateBindingExtension(ContentTemplateProperty)); 2715content.SetValue(CanContentScrollProperty, new TemplateBindingExtension(CanContentScrollProperty)); 2721hsb.SetValue(RangeBase.MaximumProperty, new TemplateBindingExtension(ScrollableWidthProperty)); 2722hsb.SetValue(ScrollBar.ViewportSizeProperty, new TemplateBindingExtension(ViewportWidthProperty)); 2724hsb.SetValue(UIElement.VisibilityProperty, new TemplateBindingExtension(ComputedHorizontalScrollBarVisibilityProperty)); 2731vsb.SetValue(RangeBase.MaximumProperty, new TemplateBindingExtension(ScrollableHeightProperty)); 2732vsb.SetValue(ScrollBar.ViewportSizeProperty, new TemplateBindingExtension(ViewportHeightProperty)); 2734vsb.SetValue(UIElement.VisibilityProperty, new TemplateBindingExtension(ComputedVerticalScrollBarVisibilityProperty));
System\Windows\FrameworkElementFactory.cs (6)
1200SetValue(ContentPresenter.ContentProperty, new TemplateBindingExtension(dpContent)); 1209SetValue(ContentPresenter.ContentTemplateProperty, new TemplateBindingExtension(dpContentTemplate)); 1211SetValue(ContentPresenter.ContentTemplateSelectorProperty, new TemplateBindingExtension(dpContentTemplateSelector)); 1213SetValue(ContentPresenter.ContentStringFormatProperty, new TemplateBindingExtension(dpContentStringFormat)); 1234SetValue(GridViewRowPresenter.ContentProperty, new TemplateBindingExtension(dpContent)); 1242SetValue(GridViewRowPresenter.ColumnsProperty, new TemplateBindingExtension(GridView.ColumnCollectionProperty));
System\Windows\Markup\Baml2006\Baml2006Reader.cs (1)
1717value = new TemplateBindingExtension((DependencyProperty)param);
System\Windows\Markup\Baml2006\WpfGeneratedKnownTypes.cs (1)
9882return new System.Windows.TemplateBindingExtension(
System\Windows\Markup\BamlRecordReader.cs (1)
1490instance = new TemplateBindingExtension(dp);
System\Windows\TemplateContent.cs (6)
1252pv.ValueInternal = new TemplateBindingExtension(dpContent); 1273pv.ValueInternal = new TemplateBindingExtension(dpContentTemplate); 1289pv.ValueInternal = new TemplateBindingExtension(dpContentTemplateSelector); 1305pv.ValueInternal = new TemplateBindingExtension(dpContentStringFormat); 1345propertyValue.ValueInternal = new TemplateBindingExtension(dpContent); 1364propertyValue.ValueInternal = new TemplateBindingExtension(GridView.ColumnCollectionProperty);
System.Windows.Controls.Ribbon (1)
Microsoft\Windows\Controls\Ribbon\RibbonComboBox.cs (1)
64text.SetValue(TextBlock.TextProperty, new TemplateBindingExtension(ContentPresenter.ContentProperty));