我正在关注Google的教程,并且已将以下内容添加到我的项目中:
public partial class MainWindow : Window
{
public MainWindow()
{
InitializeComponent();
//set the DataContext of the window itself or the DataGrid
dgResults.DataContext = new ViewModel();
}
}
public class ViewModel
{
public ViewModel()
{
SampleData = new List<SampleData>();
SampleData.Add(new SampleData() { WellID = "1" });
SampleData.Add(new SampleData() { WellID = "2" });
}
public List<SampleData> SampleData { get; }
}
但是当我尝试从这个包中导入任何内容时,就好像根本没有编译/实现它一样。我尝试重建和清理项目,删除gradle中的行,同步,再次添加到gradle并再次同步但没有任何变化。
根据教程,compile 'com.firebase:firebase-jobdispatcher:0.8.5'
类属于Driver
,但如图所示,它不存在。
我忘了什么吗?我没有看到导入此包的其他操作。