Exemplo n.º 1
0
        public static void ExportCollection(MenuCommand command)
        {
            var collection = command.context as StringTableCollection;

            Assert.IsTrue(collection != null, "Expected StringTableCollection");
            var wnd = ExportCharacterSetWindow.ShowWindow();

            wnd.SelectedTables.SetSelection(collection);
        }
Exemplo n.º 2
0
        public static void ExportStringTable(MenuCommand command)
        {
            var table = command.context as StringTable;

            Assert.IsTrue(table != null, "Expected StringTable");
            var wnd = ExportCharacterSetWindow.ShowWindow();

            wnd.SelectedTables.SetSelection(table);
        }