public void OpenDocument() { openFilePath = dialogService.GetFileOpenPath("Open MAX7456 Font File", "Font Files|*.mcm;*.h|MCM Files|*.mcm|Header Files|*.h"); if (openFilePath == null) { return; } if (Path.GetExtension(openFilePath) == ".mcm") { CurrentGlyphSet = GlyphSet.OpenMcmFile(openFilePath); } else if (Path.GetExtension(openFilePath) == ".h") { CurrentGlyphSet = GlyphSet.OpenHFile(openFilePath); } }
public void NewDocument() { CurrentGlyphSet = GlyphSet.CreateEmpty(); }