1:如图:
代码:
public partial class Window1 : Window
{
public Window1()
{
InitializeComponent();
Restaurant sp = new Restaurant()
{
Name = "sp",
Address = "深圳",
PhoneNumber = "1111"
};
sss ss = new sss();
ss.Restaurant = sp;
this.DataContext = ss;
}
public class sss : NotificationObject
{
private Restaurant restaurant;
public Restaurant Restaurant
{
get { return restaurant; }
set
{
restaurant = value;
this.RaisePropertyChanged("Restaurent");
}
}
}
}
Restaurant类:
public class Restaurant
{
public string Name { get; set; }
public string Address { get; set; }
public string PhoneNumber { get; set; }
}
前台页面最终编译成一个类 并且和后后台是同一个类 。
同样的代码在其他的地方 为什么他的就可以?
如图:
代码:
后台也是
public MainWindow()
{
InitializeComponent();
this.DataContext = new MainWindowViewModel();
}
下面的Restaurant 类也是一样的 为什么我的就不能出来 很纳闷? 求解释 ?
1 回答
- 1 回答
- 0 关注
- 521 浏览
添加回答
举报
0/150
提交
取消