2 overrides of Type
PresentationFramework (2)
src\Framework\MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (2)
279public override StickyNoteType Type 450public override StickyNoteType Type
14 references to Type
PresentationFramework (14)
src\Framework\MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (4)
140if ((token & XmlToken.Ink) != 0 && snc.Content.Type == StickyNoteType.Ink) 146if ((token & XmlToken.Text) != 0 && snc.Content.Type == StickyNoteType.Text) 736if ((token == XmlToken.Ink && contentControl.Type != StickyNoteType.Ink) 737|| (token == XmlToken.Text && contentControl.Type != StickyNoteType.Text))
src\Framework\System\Windows\Controls\StickyNote.cs (10)
649if (_contentControl.Type != _stickyNoteType) 820if (stickyNoteControl.Content != null && stickyNoteControl.Content.Type != StickyNoteType.Ink) 837if (e.Property == ForegroundProperty && stickyNoteControl.Content != null && stickyNoteControl.Content.Type != StickyNoteType.Ink) 1479if (Content.Type != StickyNoteType.Ink) 1526if (Content.Type != StickyNoteType.Ink) 1550if (Content.Type == StickyNoteType.Ink) 1575if (Content.Type == StickyNoteType.Ink) 1762if (content == null || content.Type != StickyNoteType.Ink) 1799args.CanExecute = (content != null && content.Type == StickyNoteType.Ink); 1813if ( Content == null || Content.Type != StickyNoteType.Ink )