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