15 references to FrameworkElementFactory
Microsoft.VisualStudio.LanguageServices (1)
InheritanceMargin\MarginGlyph\InheritanceMarginGlyph.cs (1)
79
var templateBorder = new
FrameworkElementFactory
(typeof(Border), "Border");
PresentationFramework (14)
System\Windows\Controls\ScrollViewer.cs (9)
2676
FrameworkElementFactory grid = new
FrameworkElementFactory
(typeof(Grid), "Grid");
2677
FrameworkElementFactory gridColumn1 = new
FrameworkElementFactory
(typeof(ColumnDefinition), "ColumnDefinitionOne");
2678
FrameworkElementFactory gridColumn2 = new
FrameworkElementFactory
(typeof(ColumnDefinition), "ColumnDefinitionTwo");
2679
FrameworkElementFactory gridRow1 = new
FrameworkElementFactory
(typeof(RowDefinition), "RowDefinitionOne");
2680
FrameworkElementFactory gridRow2 = new
FrameworkElementFactory
(typeof(RowDefinition), "RowDefinitionTwo");
2681
FrameworkElementFactory vsb = new
FrameworkElementFactory
(typeof(ScrollBar), VerticalScrollBarTemplateName);
2682
FrameworkElementFactory hsb = new
FrameworkElementFactory
(typeof(ScrollBar), HorizontalScrollBarTemplateName);
2683
FrameworkElementFactory content = new
FrameworkElementFactory
(typeof(ScrollContentPresenter), ScrollContentPresenterTemplateName);
2684
FrameworkElementFactory corner = new
FrameworkElementFactory
(typeof(Rectangle), "Corner");
System\Windows\Controls\Validation.cs (2)
609
FrameworkElementFactory border = new
FrameworkElementFactory
(typeof(Border), "Border");
613
FrameworkElementFactory adornedElementPlaceHolder = new
FrameworkElementFactory
(typeof(AdornedElementPlaceholder), "Placeholder");
System\Windows\FrameworkElementFactory.cs (3)
38
public FrameworkElementFactory() :
this
(null, null)
47
public FrameworkElementFactory(Type type) :
this
(type, null)
56
public FrameworkElementFactory(string text) :
this
(null, null)