Wpf类与主窗口连接

时间:2014-12-26 15:48:05

标签: wpf vb.net

我最近从Windows应用程序迁移到了WPF。我使用的编程语言是visual basic net。我的问题是如何连接我自己的类以及如何从主应用程序窗口发送参数。如果此问题重复,请发送给我链接。

1 个答案:

答案 0 :(得分:0)

您只需传递ctor中的参数

Instance Constructors

class CoOrds
{
    public int x, y;

    // Default constructor: 
    public CoOrds()
    {
        x = 0;
        y = 0;
    }

    // A constructor with two arguments: 
    public CoOrds(int x, int y)
    {
        this.x = x;
        this.y = y;
    }

    // Override the ToString method: 
    public override string ToString()
    {
        return (String.Format("({0},{1})", x, y));
    }
}