Exemplo n.º 1
0
        private void InitNotify(string title, string url)
        {
            gridSubtitle.Children.Clear();

            NowSubtitle  = title;
            NowCaption   = "";
            NowContainer = null;

            if (StackHistory == null)
            {
                StackHistory = new Stack <Pair>();
            }
            StackHistory.Clear();

            RefreshSubtitle("Anime", new Pair(title, url));
        }
Exemplo n.º 2
0
        private void InitSubtitle(string title)
        {
            int week = Data.DictSeason[title].Week;

            gridSubtitle.Children.Clear();

            NowSubtitle  = title;
            NowCaption   = "";
            NowContainer = null;

            if (StackHistory == null)
            {
                StackHistory = new Stack <Pair>();
            }
            StackHistory.Clear();

            RefreshSubtitle("Weekdata", week.ToString());
        }
        public LineShapeViewModel(LineShape line, IHistory history)
        {
            Disposable = new CompositeDisposable();

            var lineHistoryScope = new StackHistory().AddTo(this.Disposable);

            this.Name = line.ToReactivePropertyAsSynchronized(l => l.Name)
                        .SetValidateNotifyError(name => string.IsNullOrWhiteSpace(name) ? "Name can not be null or whitespace." : null)
                        .AddTo(this.Disposable);

            var startInitialValue = new PointShapeViewModel(line.Start, lineHistoryScope).AddTo(this.Disposable);

            this.Start = new ReactiveProperty <PointShapeViewModel>(startInitialValue)
                         .SetValidateNotifyError(start => start == null ? "Point can not be null." : null)
                         .AddTo(this.Disposable);

            var endInitialValue = new PointShapeViewModel(line.End, lineHistoryScope).AddTo(this.Disposable);

            this.End = new ReactiveProperty <PointShapeViewModel>(endInitialValue)
                       .SetValidateNotifyError(end => end == null ? "Point can not be null." : null)
                       .AddTo(this.Disposable);

            this.Name.ObserveWithHistory(name => line.Name = name, line.Name, lineHistoryScope).AddTo(this.Disposable);

            this.DeleteCommand = new ReactiveCommand();
            this.DeleteCommand.Subscribe((x) => Delete(line, history)).AddTo(this.Disposable);

            UndoCommand = new ReactiveCommand(lineHistoryScope.CanUndo, false);
            UndoCommand.Subscribe(_ => lineHistoryScope.Undo()).AddTo(this.Disposable);

            RedoCommand = new ReactiveCommand(lineHistoryScope.CanRedo, false);
            RedoCommand.Subscribe(_ => lineHistoryScope.Redo()).AddTo(this.Disposable);

            ClearCommand = new ReactiveCommand(lineHistoryScope.CanClear, false);
            ClearCommand.Subscribe(_ => lineHistoryScope.Clear()).AddTo(this.Disposable);
        }