6 references to Style
PresentationFramework (2)
src\Framework\System\Windows\Controls\Image.cs (1)
423Style style = new Style(typeof(Image), null);
src\Framework\System\Windows\Controls\MediaElement.cs (1)
114Style style = new Style(typeof(MediaElement), null);
System.Activities.Presentation (4)
System.Activities.Presentation\System\Activities\Presentation\Toolbox\TreeViewContainerStyleSelector.cs (2)
35(null == baseStyle ? new Style(typeof(TreeViewItem)) : new Style(typeof(TreeViewItem), baseStyle)); 106(null == baseStyle ? new Style(typeof(TreeViewItem)) : new Style(typeof(TreeViewItem), baseStyle));
System.Activities.Presentation\System\Activities\Presentation\View\DataGridHelper.cs (2)
824Style style = null == baseStyle ? new Style(typeof(DataGridCell)) : new Style(typeof(DataGridCell), baseStyle); 850Style style = null == baseStyle ? new Style(typeof(DataGridRow)) : new Style(typeof(DataGridRow), baseStyle);