11 references to Style
PresentationFramework (7)
src\Framework\System\Windows\Controls\AccessText.cs (1)
557Style accessKeyStyle = new Style(typeof(Run));
src\Framework\System\Windows\Controls\DataGridCheckBoxColumn.cs (2)
38Style style = new Style(typeof(CheckBox)); 64Style style = new Style(typeof(CheckBox));
src\Framework\System\Windows\Controls\DataGridComboBoxColumn.cs (1)
229Style style = new Style(typeof(ComboBox));
src\Framework\System\Windows\Controls\DataGridTextColumn.cs (2)
40Style style = new Style(typeof(TextBlock)); 63Style style = new Style(typeof(TextBox));
src\Framework\System\Windows\Controls\InkCanvas.cs (1)
118Style defaultStyle = new Style(ownerType);
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);