を作ります私のエラー:は、私はいくつかの研究の後、私は次のコードを持って、初めてのviewmodelを作っていますのviewmodelエラー
Type or namespace couldn't be found
最初の年生としてビューモデルを作成するのはかなり難しいこれは私のモデルクラスの1つです ::;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace HotelWPF
{
public class Reservation
{
private string SecretaryName;
private int RoomNumber;
private string ReservationType;
private DateTime ReservationDate;
public string SecretaryName1
{
get
{
return SecretaryName;
}
set
{
SecretaryName = value;
}
}
public int RoomNumber1
{
get
{
return RoomNumber;
}
set
{
RoomNumber = value;
}
}
public string ReservationType1
{
get
{
return ReservationType;
}
set
{
ReservationType = value;
}
}
public DateTime ReservationDate1
{
get
{
return ReservationDate;
}
set
{
ReservationDate = value;
}
}
}
}
viewmodelまたはモデルクラスに?@Gigitex Viewmodel。 – Gigitex
INOTifyPropertyChangedを実装しています –
まだエラーが発生しています – Gigitex