2 overrides of Type
PresentationFramework (2)
MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (2)
267public override StickyNoteType Type 438public override StickyNoteType Type
14 references to Type
PresentationFramework (14)
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (4)
123if ((token & XmlToken.Ink) != 0 && snc.Content.Type == StickyNoteType.Ink) 129if ((token & XmlToken.Text) != 0 && snc.Content.Type == StickyNoteType.Text) 718if ((token == XmlToken.Ink && contentControl.Type != StickyNoteType.Ink) 719|| (token == XmlToken.Text && contentControl.Type != StickyNoteType.Text))
System\Windows\Controls\StickyNote.cs (10)
605if (_contentControl.Type != _stickyNoteType) 776if (stickyNoteControl.Content != null && stickyNoteControl.Content.Type != StickyNoteType.Ink) 792if (e.Property == ForegroundProperty && stickyNoteControl.Content != null && stickyNoteControl.Content.Type != StickyNoteType.Ink) 1415if (Content.Type != StickyNoteType.Ink) 1468if (Content.Type != StickyNoteType.Ink) 1492if (Content.Type == StickyNoteType.Ink) 1517if (Content.Type == StickyNoteType.Ink) 1683if (content == null || content.Type != StickyNoteType.Ink) 1720args.CanExecute = (content != null && content.Type == StickyNoteType.Ink); 1734if ( Content == null || Content.Type != StickyNoteType.Ink )