Comment inclure une police externe dans une application WPF sans l'installer ?
J'ai essayé ce code
System.Drawing.Text.PrivateFontCollection privateFonts = new System.Drawing.Text.PrivateFontCollection();
privateFonts.AddFontFile("C:\\Documents and Settings\\somefont.ttf");
System.Drawing.Font font = new Font(privateFonts.Families[0], 12);
this.label1.Font = font;
Il fonctionne correctement dans Windows Form Application mais pas dans WPF.