I hace a WinForms application that I'm trying to port to Eto.Forms and the only thing missing is the ability to programmatically load fonts from disk.
Under WinForms I use the PrivateFontCollection class, with code similar to this one:
PrivateFontCollection fc = new PrivateFontCollection();
fc.AddFontFile(@"Folder_Containing_The_Font_File\MyFont.ttf"));
FontFamily ff = fc.Families[0];
Font myFont = new Font(ff, 12, FontStyle.Regular);
Is there any way to do something similar with Eto.Forms?