I am creating a simple application in Visual Studio 2013 for Windows 8 (universal application), I want to change the font family of the text field using the selected combobox font.
I know how to populate combobox with available fonts in a Windows Form application, for example, for example:
List<string> fonts = new List<string>();
foreach (FontFamily font in System.Drawing.FontFamily.Families)
{
fonts.Add(font.Name);
}
but this does not work in the metro / store app ... please help me
source
share