2 overrides of Type
PresentationFramework (2)
MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (2)
273public override StickyNoteType Type 444public override StickyNoteType Type
14 references to Type
PresentationFramework (14)
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (4)
134if ((token & XmlToken.Ink) != 0 && snc.Content.Type == StickyNoteType.Ink) 140if ((token & XmlToken.Text) != 0 && snc.Content.Type == StickyNoteType.Text) 729if ((token == XmlToken.Ink && contentControl.Type != StickyNoteType.Ink) 730|| (token == XmlToken.Text && contentControl.Type != StickyNoteType.Text))
System\Windows\Controls\StickyNote.cs (10)
639if (_contentControl.Type != _stickyNoteType) 810if (stickyNoteControl.Content != null && stickyNoteControl.Content.Type != StickyNoteType.Ink) 827if (e.Property == ForegroundProperty && stickyNoteControl.Content != null && stickyNoteControl.Content.Type != StickyNoteType.Ink) 1469if (Content.Type != StickyNoteType.Ink) 1516if (Content.Type != StickyNoteType.Ink) 1540if (Content.Type == StickyNoteType.Ink) 1565if (Content.Type == StickyNoteType.Ink) 1725if (content == null || content.Type != StickyNoteType.Ink) 1762args.CanExecute = (content != null && content.Type == StickyNoteType.Ink); 1776if ( Content == null || Content.Type != StickyNoteType.Ink )