private void OpenCommand_Execute(object parameter) { OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.Filter = "PSSG files|*.pssg|DDS files|*.dds|Xml files|*.xml|All files|*.*"; openFileDialog.FilterIndex = 1; if (!string.IsNullOrEmpty(filePath)) { openFileDialog.FileName = Path.GetFileNameWithoutExtension(filePath); openFileDialog.InitialDirectory = Path.GetDirectoryName(filePath); } if (openFileDialog.ShowDialog() == true) { try { filePath = openFileDialog.FileName; using (var fs = File.Open(filePath, FileMode.Open, FileAccess.Read, FileShare.Read)) { var pssg = PssgFile.Open(fs); LoadPssg(pssg); } DisplayName = Properties.Resources.AppTitleShort + " - " + Path.GetFileName(filePath); } catch (Exception excp) { // Fail DisplayName = Properties.Resources.AppTitleLong; MessageBox.Show("The program could not open this file!" + Environment.NewLine + Environment.NewLine + excp.Message, "Could Not Open", MessageBoxButton.OK, MessageBoxImage.Error); } } }
public void ParseCommandLineArguments() { string[] args = Environment.GetCommandLineArgs(); if (args.Length > 1) { try { filePath = args[1]; ClearVars(true); file = PssgFile.Open(File.Open(filePath, FileMode.Open, FileAccess.Read, FileShare.Read)); nodesWorkspace.LoadData(file); texturesWorkspace.LoadData(nodesWorkspace.RootNode); if (texturesWorkspace.Textures.Count > 0) { SelectedTabIndex = 1; } DisplayName = Properties.Resources.AppTitleShort + " - " + Path.GetFileName(filePath); } catch (Exception excp) { // Fail DisplayName = Properties.Resources.AppTitleLong; MessageBox.Show("The program could not open this file!" + Environment.NewLine + Environment.NewLine + excp.Message, "Could Not Open", MessageBoxButton.OK, MessageBoxImage.Error); } } }
private void OpenCommand_Execute(object parameter) { OpenFileDialog openFileDialog = new OpenFileDialog(); openFileDialog.Filter = "PSSG files|*.pssg|DDS files|*.dds|Xml files|*.xml|All files|*.*"; openFileDialog.FilterIndex = 1; if (!string.IsNullOrEmpty(filePath)) { openFileDialog.FileName = Path.GetFileNameWithoutExtension(filePath); openFileDialog.InitialDirectory = Path.GetDirectoryName(filePath); } if (openFileDialog.ShowDialog() == true) { try { filePath = openFileDialog.FileName; ClearVars(true); file = Task <PssgFile> .Run(() => { return(PssgFile.Open(File.Open(filePath, FileMode.Open, FileAccess.Read, FileShare.Read))); }).Result; nodesWorkspace.LoadData(file); texturesWorkspace.LoadData(nodesWorkspace.RootNode); if (texturesWorkspace.Textures.Count > 0) { SelectedTabIndex = 1; } DisplayName = Properties.Resources.AppTitleShort + " - " + Path.GetFileName(filePath); } catch (Exception excp) { // Fail DisplayName = Properties.Resources.AppTitleLong; MessageBox.Show("The program could not open this file!" + Environment.NewLine + Environment.NewLine + excp.Message, "Could Not Open", MessageBoxButton.OK, MessageBoxImage.Error); } } }
public void ParseCommandLineArguments() { string[] args = Environment.GetCommandLineArgs(); if (args.Length > 1) { try { filePath = args[1]; using (var fs = File.Open(filePath, FileMode.Open, FileAccess.Read, FileShare.Read)) { var pssg = PssgFile.Open(fs); LoadPssg(pssg); } DisplayName = Properties.Resources.AppTitleShort + " - " + Path.GetFileName(filePath); } catch (Exception excp) { // Fail DisplayName = Properties.Resources.AppTitleLong; MessageBox.Show("The program could not open this file!" + Environment.NewLine + Environment.NewLine + excp.Message, "Could Not Open", MessageBoxButton.OK, MessageBoxImage.Error); } } }