user448432
user448432

Reputation: 21

Superscripts in WPF window title

I need to be able to superscript TM inside the title window of my page.How can i do that in XAML ?

Upvotes: 1

Views: 1618

Answers (2)

Schalk
Schalk

Reputation: 316

Here's a link: http://en.wikipedia.org/wiki/Trademark_symbol Short and sweet, use ALT + 0153 if you're using windows, otherwise you could just try and copy/paste '™'.

Have fun coding!

Upvotes: 2

BoltClock
BoltClock

Reputation: 724202

Just use the Unicode trademark symbol, ™, in your window's Title attribute:

<Window x:Class="WpfApplication1.MainWindow" 
        xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
        xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml"
        Title="Super Awesome Main Window™">

Upvotes: 4

Related Questions