Avrete bisogno di un approccio diverso installando i font.
- Utilizzare un programma di installazione (creare un progetto di installazione) per installare i font
- Un altro approccio (più facile) utilizzando un metodo nativo.
dichiarare l'importazione dll:
[DllImport("gdi32.dll", EntryPoint="AddFontResourceW", SetLastError=true)]
public static extern int AddFontResource(
[In][MarshalAs(UnmanagedType.LPWStr)]
string lpFileName);
Nel codice:
// Try install the font.
result = AddFontResource(@"C:\MY_FONT_LOCATION\MY_NEW_FONT.TTF");
error = Marshal.GetLastWin32Error();
La fonte:
http://www.brutaldev.com/post/2009/03/26/Installing-and-removing-fonts-using-C
ho messo insieme in un test di unità, Spero che questo aiuti:
[TestFixture]
public class Tests
{
// Declaring a dll import is nothing more than copy/pasting the next method declaration in your code.
// You can call the method from your own code, that way you can call native
// methods, in this case, install a font into windows.
[DllImport("gdi32.dll", EntryPoint = "AddFontResourceW", SetLastError = true)]
public static extern int AddFontResource([In][MarshalAs(UnmanagedType.LPWStr)]
string lpFileName);
// This is a unit test sample, which just executes the native method and shows
// you how to handle the result and get a potential error.
[Test]
public void InstallFont()
{
// Try install the font.
var result = AddFontResource(@"C:\MY_FONT_LOCATION\MY_NEW_FONT.TTF");
var error = Marshal.GetLastWin32Error();
if (error != 0)
{
Console.WriteLine(new Win32Exception(error).Message);
}
}
}
che dovrebbe aiutare nel vostro cammino :)
Sono abbastanza sicuro che l'installazione di nuovi font coinvolge più solo affrontare i file nella cartella Fonts. – dtb
L'elevazione dei privilegi dell'applicazione è in esecuzione per risolvere il problema? – abatishchev
Dovresti fare una domanda diversa: "Come installare un font?". La tua domanda esistente ha una risposta banale: il tuo utente non ha diritti di accesso. Questa risposta non ti aiuta. – usr