27 references to SNBConstants
PresentationFramework (27)
src\Framework\MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (4)
608cargoName = SNBConstants.MetaResourceName; 614cargoName = SNBConstants.TextResourceName; 619cargoName = SNBConstants.InkResourceName; 1337AnnotationResource cargo = new AnnotationResource(SNBConstants.MetaResourceName);
src\Framework\MS\Internal\Controls\StickyNote\StickyNoteContentControl.cs (2)
488throw new InvalidOperationException(SR.Get(SRID.InvalidStickyNoteTemplate, type, typeof(RichTextBox), SNBConstants.c_ContentControlId)); 497throw new InvalidOperationException(SR.Get(SRID.InvalidStickyNoteTemplate, type, typeof(InkCanvas), SNBConstants.c_ContentControlId));
src\Framework\System\Windows\Controls\StickyNote.cs (21)
80[TemplatePart(Name = SNBConstants.c_CloseButtonId, Type = typeof(Button))] 81[TemplatePart(Name = SNBConstants.c_TitleThumbId, Type = typeof(Thumb))] 82[TemplatePart(Name = SNBConstants.c_BottomRightResizeThumbId, Type = typeof(Thumb))] 83[TemplatePart(Name = SNBConstants.c_ContentControlId, Type = typeof(ContentControl))] 84[TemplatePart(Name = SNBConstants.c_IconButtonId, Type = typeof(Button))] 85[TemplatePart(Name = SNBConstants.c_CopyMenuId, Type = typeof(MenuItem))] 86[TemplatePart(Name = SNBConstants.c_PasteMenuId, Type = typeof(MenuItem))] 87[TemplatePart(Name = SNBConstants.c_InkMenuId, Type = typeof(MenuItem))] 88[TemplatePart(Name = SNBConstants.c_SelectMenuId, Type = typeof(MenuItem))] 89[TemplatePart(Name = SNBConstants.c_EraseMenuId, Type = typeof(MenuItem))] 724return GetTemplateChild(SNBConstants.c_CloseButtonId) as Button; 732return GetTemplateChild(SNBConstants.c_IconButtonId) as Button; 740return GetTemplateChild(SNBConstants.c_TitleThumbId) as Thumb; 748return GetTemplateChild(SNBConstants.c_ContentControlId) as UIElement; 756return GetTemplateChild(SNBConstants.c_BottomRightResizeThumbId) as Thumb; 1853return GetTemplateChild(SNBConstants.c_InkMenuId) as MenuItem; 1861return GetTemplateChild(SNBConstants.c_SelectMenuId) as MenuItem; 1869return GetTemplateChild(SNBConstants.c_EraseMenuId) as MenuItem; 1877return GetTemplateChild(SNBConstants.c_CopyMenuId) as MenuItem; 1885return GetTemplateChild(SNBConstants.c_PasteMenuId) as MenuItem; 1893return GetTemplateChild(SNBConstants.c_ClipboardSeparatorId) as Separator;