14 references to FrameworkElementFactory
PresentationFramework (14)
src\Framework\System\Windows\Controls\ScrollViewer.cs (9)
2716FrameworkElementFactory grid = new FrameworkElementFactory(typeof(Grid), "Grid"); 2717FrameworkElementFactory gridColumn1 = new FrameworkElementFactory(typeof(ColumnDefinition), "ColumnDefinitionOne"); 2718FrameworkElementFactory gridColumn2 = new FrameworkElementFactory(typeof(ColumnDefinition), "ColumnDefinitionTwo"); 2719FrameworkElementFactory gridRow1 = new FrameworkElementFactory(typeof(RowDefinition), "RowDefinitionOne"); 2720FrameworkElementFactory gridRow2 = new FrameworkElementFactory(typeof(RowDefinition), "RowDefinitionTwo"); 2721FrameworkElementFactory vsb = new FrameworkElementFactory(typeof(ScrollBar), VerticalScrollBarTemplateName); 2722FrameworkElementFactory hsb = new FrameworkElementFactory(typeof(ScrollBar), HorizontalScrollBarTemplateName); 2723FrameworkElementFactory content = new FrameworkElementFactory(typeof(ScrollContentPresenter), ScrollContentPresenterTemplateName); 2724FrameworkElementFactory corner = new FrameworkElementFactory(typeof(Rectangle), "Corner");
src\Framework\System\Windows\Controls\Validation.cs (2)
604FrameworkElementFactory border = new FrameworkElementFactory(typeof(Border), "Border"); 608FrameworkElementFactory adornedElementPlaceHolder = new FrameworkElementFactory(typeof(AdornedElementPlaceholder), "Placeholder");
src\Framework\System\Windows\FrameworkElementFactory.cs (3)
35public FrameworkElementFactory() : this(null, null) 44public FrameworkElementFactory(Type type) : this(type, null) 53public FrameworkElementFactory(string text) : this(null, null)