从没有实例化的另一个类访问非静态方法

时间:2013-07-04 08:41:55

标签: c# wpf visual-studio-2010 class

标题是我的问题。我将在下面解释。

我正在研究wpf应用程序是vs2010。我有两个窗口,一个是我的MainWindow,另一个是fileList窗口。在我的fileList窗口中,我有一个文件列表,点击后,应该加载文件。 onClick方法在fileList类中实现。加载文件的功能在MainWindow分部类中实现。

我在MainWindow类中实例化的fileList类来显示窗口。我不能再次实例化MainWidow。 MainWindow中的函数(方法)不能声明为static,因为它使用的其他参数我不能(不知道如何)声明为static。

我在下面粘贴相关代码。请帮助。

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.
     }
  }

} 

我真诚地希望我很清楚。如果需要,请询问详情。

5 个答案:

答案 0 :(得分:3)

嗯,最简单的解决方案是简单地为Filelist窗口提供一个构造函数,该构造函数接受一个指向Mainwindows中的processfile方法的委托。 看看这篇文章:http://www.codeproject.com/Articles/109000/C-Delegates-Step-by-Step

制定统计数据不是解决方案 - 这将是一个非常丑陋的黑客攻击,这会导致比代表更多的麻烦。

答案 1 :(得分:1)

应用程序中的所有窗口都有一个静态便捷访问属性:

Application.Current.Windows

然后简单地选择第一个(如果你有一个以上那个,则找出正确的一个)并转换为你的MainWindow类型。现在你有一个实例来调用你的方法。

答案 2 :(得分:1)

好的,这应该相当容易。您只需要在FileList类中声明一个事件,该事件在您的Button_click方法中触发,发送文件路径并从MainWindow订阅它,并使用您刚刚收到的参数调用您的processfile方法。

在您的FileList类中:

    public event EventHandler<EventArgs<string>> PathReceived = delegate { };

在Button_click中发布此内容。

在cosntructor的MainWindow类中:

   this.fileList.PathReceived = (o,args) => this.ProcessFile(args.Value);

发布代码:

   this.PathReceived(null, new EventArgs<string>(yourPath));

修改 我忘了向你提供EventArgs类(它来自我的一个旧项目)。

public class EventArgs<T> : EventArgs
{
    /// <summary>
    /// Initializes a new instance of the <see cref="EventArgs{T}"/> class.
    /// </summary>
    /// <param name="value">The value.</param>
    public EventArgs(T value)
    {
        Value = value;
    }

    /// <summary>
    /// Gets the value.
    /// </summary>
    /// <value>
    /// The value.
    /// </value>
    public T Value { get; private set; }
}

答案 3 :(得分:0)

虽然它是一种反模式(因为它类似于全局变量并且持续存在状态,这使得测试更加困难),但您可以在此处使用单例模式:

public partial class MainWindow {
  private static MainWindow instance = new MainWindow();

  public static MainWindow Instance { get { return instance; } }

  private FileList fl = new fileList();

  private MainWindow() {
    InitializeComponent();
    fl.show();
  }
}

然后,您的文件列表可以使用MainWindow.Instance

但是,这会产生部分隐藏两个类之间依赖关系的副作用。您真正想要做的是在构造函数中要求MainWindow实例fileList。这使得依赖关系变得明显,并打开了使用框架的大门(这将帮助您提供可测试性)。

此外,C#约定是调用类FileList而不是fileList

答案 4 :(得分:0)

我这样做是为了让一个方法在我的一个类中运行而不进行整个变量设置。

string res = (new myClass ()).methodInsideMyclass ();