本文整理汇总了C#中MainViewModel.LoadData方法的典型用法代码示例。如果您正苦于以下问题:C# MainViewModel.LoadData方法的具体用法?C# MainViewModel.LoadData怎么用?C# MainViewModel.LoadData使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类MainViewModel
的用法示例。
在下文中一共展示了MainViewModel.LoadData方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的C#代码示例。
示例1: MainWindow
public MainWindow()
{
InitializeComponent();
this.AllowsTransparency = true;
//viewModel = new MainViewModel(new GoogleStockQueryService(), new LocalStockService());
viewModel = new MainViewModel(new TwseStockQueryService(), new LocalStockService(), new FavoriteStockService());
DataContext = viewModel;
viewModel.LoadData();
}
示例2: OnInvoke
/// <summary>
/// Agent that runs a scheduled task
/// </summary>
/// <param name="task">
/// The invoked task
/// </param>
/// <remarks>
/// This method is called when a periodic or resource intensive task is invoked
/// </remarks>
protected override void OnInvoke(ScheduledTask task)
{
try
{
var model = new MainViewModel();
model.OnLoaded += () =>
{
if (model.Item == null) return;
if (model.Items == null || model.Items.Count < 3) return;
int randomIndex = new Random().Next(3);
var item = model.Items[randomIndex];
string title = "Trivia Buff";
string description = item.Title;
Deployment.Current.Dispatcher.BeginInvoke(() =>
{
try
{
LiveTile.UpdateLiveTile(title, description);
Debug.WriteLine("Current memory - updated: {0}", DeviceStatus.ApplicationCurrentMemoryUsage);
}
catch
{
// TODO: log error
}
NotifyComplete();
});
};
model.OnError += exception =>
{
// TODO: log error
NotifyComplete();
};
model.LoadData();
}
catch (Exception e)
{
NotifyComplete();
}
}