17 references to Italic
PresentationCore (1)
Core\CSharp\System\Windows\FontStyles.cs (1)
46
fontStyle = FontStyles.
Italic
;
PresentationFramework (12)
src\Framework\System\Windows\Controls\TextRangeAdaptor.cs (1)
281
return (style == FontStyles.
Italic
|| style == FontStyles.Oblique);
src\Framework\System\windows\Documents\TextEditorCharacters.cs (2)
213
FontStyle fontStyle = (propertyValue != DependencyProperty.UnsetValue && (FontStyle)propertyValue == FontStyles.
Italic
) ? FontStyles.Normal : FontStyles.
Italic
;
src\Framework\System\windows\Documents\TextEditorDragDrop.cs (1)
443
bool italic = (_textEditor.AcceptsRichContent && fontStylePropertyValue != DependencyProperty.UnsetValue && (FontStyle)fontStylePropertyValue == FontStyles.
Italic
);
src\Framework\System\windows\Documents\TextSelection.cs (2)
2056
italic = (textEditor.AcceptsRichContent && fontStylePropertyValue != DependencyProperty.UnsetValue && (FontStyle)fontStylePropertyValue == FontStyles.
Italic
);
2146
italic = (_textEditor.AcceptsRichContent && fontStylePropertyValue != DependencyProperty.UnsetValue && (FontStyle)fontStylePropertyValue == FontStyles.
Italic
);
src\Framework\System\Windows\SystemFonts.cs (6)
56
return (SystemParameters.IconMetrics.lfFont.lfItalic != 0) ? FontStyles.
Italic
: FontStyles.Normal;
135
return (SystemParameters.NonClientMetrics.lfCaptionFont.lfItalic != 0) ? FontStyles.
Italic
: FontStyles.Normal;
215
return (SystemParameters.NonClientMetrics.lfSmCaptionFont.lfItalic != 0) ? FontStyles.
Italic
: FontStyles.Normal;
294
return (SystemParameters.NonClientMetrics.lfMenuFont.lfItalic != 0) ? FontStyles.
Italic
: FontStyles.Normal;
372
return (SystemParameters.NonClientMetrics.lfStatusFont.lfItalic != 0) ? FontStyles.
Italic
: FontStyles.Normal;
453
return (SystemParameters.NonClientMetrics.lfMessageFont.lfItalic != 0) ? FontStyles.
Italic
: FontStyles.Normal;
System.Activities.Presentation (4)
System.Activities.Presentation\System\Activities\Presentation\View\ImportDesigner.xaml.cs (2)
127
this.textBox.FontStyle = FontStyles.
Italic
;
158
inputTextBox.FontStyle = FontStyles.
Italic
;
System.Activities.Presentation\System\Activities\Presentation\WorkflowItemPresenter.cs (1)
79
this.text.FontStyle = FontStyles.
Italic
;
System.Activities.Presentation\System\Activities\Presentation\WorkflowItemsPresenter.cs (1)
95
text.FontStyle = FontStyles.
Italic
;