0

我正在开发一个 WPF 应用程序,我刚刚遇到了加载脚本文件(.xml)操作,我应该从系统加载它,从组合框中获取文件并调用加载方法。

xml:

<ComboBox Name="ScriptCombo" SelectedIndex="0" >
         <ComboBoxItem Content="Select Aardvark Script" />
         <ComboBoxItem Content="{Binding ScriptPath}" />
</ComboBox>

<Button Content="..." Command="{Binding Path=ScriptPathCommand}" Name="ScriptFileDialog" />

视图模型:

private string _ScriptPath;
public string ScriptPath
{
    get { return _ScriptPath; }
    set
    {
        _ScriptPath = value;
        NotifyPropertyChanged("ScriptPath");
    }
}

// Method gets called when ... Button is clicked
private void ExecuteScriptFileDialog()
{
    var dialog = new OpenFileDialog { InitialDirectory = _defaultPath };
    dialog.DefaultExt = ".xml";
    dialog.Filter = "XML Files (*.xml)|*.xml";
    dialog.ShowDialog();
    ScriptPath = dialog.FileName; //Stores the FileName in ScriptPath
}

这将打开一个文件对话框,让我选择一个 .xml 文件。在这里,当对话框打开时,它不会显示 CurrentWorkingDirectory。怎么可能达到???因此,当我单击打开并在 ScriptPath statemnt 附近放置一个断点时选择后,它会在我的组合框中显示文件的路径。

我还想获取这个文件并将其存储在 FILE 类型中,从而调用 LoadFile 方法。我在 C++ 中这样做如下:

File file = m_selectScript->getCurrentFile(); //m_selectScript is combobox name
if(file.exists())
{
LoadAardvarkScript(file);
}

void LoadAardvarkScript(File file)
{
}

在 WPf 我确实喜欢:

ScriptPath = dialog.FileName;
if (File.Exists(ScriptPath))
{
   LoadAardvarkScript(ScriptPath);
}
}

public void LoadAardvarkScript(string ScriptPath)
{
   MessageBox.Show("Start Reading File");
}

我在 C++ 代码中将 FILE 作为参数传递,在这里我传递一个字符串。读取 xml 文件时会产生任何问题吗?

4

1 回答 1

1

我不完全理解您的问题是什么,但是 OpenFileDialog 最初显示的目录是由它的InitialDirectory属性设置的,因此是您放入defaultPath变量的内容。例如,这可能是System.Environment.CurrentDirectory属性的值。

对于您问题的第二部分,.Net 中有一个File类。

于 2012-10-10T12:00:48.683 回答