Example #1
0
        public void AddTag(TagSearchResultViewModel model)
        {
            var view = this.GetView() as Window;
            if (view != null) view.Close();

            if (this.OnAddingTag != null)
                this.OnAddingTag(model, new AddingTagEventArgs { SearchResult = model });
        }
        public void AddTag(TagSearchResultViewModel model)
        {
            var view = this.GetView() as Window;

            if (view != null)
            {
                view.Close();
            }

            if (this.OnAddingTag != null)
            {
                this.OnAddingTag(model, new AddingTagEventArgs {
                    SearchResult = model
                });
            }
        }