Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="BadgeGlyphContent"/> class.
 /// Constructor to create a glyph badge content object with a glyph.
 /// </summary>
 /// <param name="glyph">The glyph to be displayed on the badge.</param>
 public BadgeGlyphContent(BadgeGlyphValue glyph)
 {
     _glyph = glyph;
 }
 public static WindowsBadgeGlyphNotification WithGlyph(this WindowsBadgeGlyphNotification notification, BadgeGlyphValue glyph)
 {
     notification.Glyph = glyph;
     return notification;
 }