我最近从Windows应用程序迁移到了WPF。我使用的编程语言是visual basic net。我的问题是如何连接我自己的类以及如何从主应用程序窗口发送参数。如果此问题重复,请发送给我链接。
答案 0 :(得分:0)
您只需传递ctor中的参数
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));
}
}