我正在开发一个 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 文件时会产生任何问题吗?