标题是我的问题。我将在下面解释。
我正在研究wpf应用程序是vs2010。我有两个窗口,一个是我的 MainWindow,另一个是 fileList 窗口。在我的 fileList 窗口中,我有一个文件列表,单击时应该加载文件。onClick 方法在 fileList 类中实现。加载文件的功能在 MainWindow 部分类中实现。
我的 fileList 类在 MainWindow 类中实例化以显示窗口。我无法再次实例化 MainWidow。MainWindow 中的函数(方法)不能声明为静态的,因为它使用了我不能(不知道如何)声明为静态的其他参数。
我在下面粘贴相关代码。请帮忙。
namespace test
{
public partial class MainWindow : Window
fileList fl = new fileList;
public MainWindow()
{
InitializeComponent();
fl.show();
}
public void porcessfile(string path)
{
//this method processes the the file at "path". It uses combobox and scrollviewer
//declared in xaml. I dont know how to declare static in xaml, else I will declare
//them static and change the whole method to static, so I can call it without
//instantiating. I tried making a nested-class, but then I can't access variable
//declared in MainWindow (parent) class. Or there is a way to do that?
}
}
和另一类:
namespace test
{
public partial class fileList : Window
{
public fileList()
{
IntializeComponent();
}
private void Button_click(object sender, RoutedEventsArgs e)
{
//code that gets "path" on click, works fine.
processfile(string path); // what and how to do here.
}
}
}
我真诚地希望我清楚。如果需要,请询问详细信息。