当前位置: 首页>>代码示例>>C#>>正文


C# MainViewModel.LoadData方法代码示例

本文整理汇总了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();
        }
开发者ID:ncclu,项目名称:FastQueryStock_Git,代码行数:11,代码来源:MainWindow.xaml.cs

示例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();
            }
        }
开发者ID:camradal,项目名称:TodayILearned,代码行数:52,代码来源:ScheduledAgent.cs


注:本文中的MainViewModel.LoadData方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。