2 overrides of Type
PresentationFramework (2)
MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (2)
268public override StickyNoteType Type 439public override StickyNoteType Type
14 references to Type
PresentationFramework (14)
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (4)
124if ((token & XmlToken.Ink) != 0 && snc.Content.Type == StickyNoteType.Ink) 130if ((token & XmlToken.Text) != 0 && snc.Content.Type == StickyNoteType.Text) 719if ((token == XmlToken.Ink && contentControl.Type != StickyNoteType.Ink) 720|| (token == XmlToken.Text && contentControl.Type != StickyNoteType.Text))
System\Windows\Controls\StickyNote.cs (10)
623if (_contentControl.Type != _stickyNoteType) 794if (stickyNoteControl.Content != null && stickyNoteControl.Content.Type != StickyNoteType.Ink) 811if (e.Property == ForegroundProperty && stickyNoteControl.Content != null && stickyNoteControl.Content.Type != StickyNoteType.Ink) 1453if (Content.Type != StickyNoteType.Ink) 1500if (Content.Type != StickyNoteType.Ink) 1524if (Content.Type == StickyNoteType.Ink) 1549if (Content.Type == StickyNoteType.Ink) 1709if (content == null || content.Type != StickyNoteType.Ink) 1746args.CanExecute = (content != null && content.Type == StickyNoteType.Ink); 1760if ( Content == null || Content.Type != StickyNoteType.Ink )