public SetCreationPage() { InitializeComponent(); if (!StaticWordsStorage.DoesWordsLoaded) { StaticWordsStorage.Words = CatLangRestClient.GetAllWords(); } view = new SetCreationPageView( new ObservableCollection <WordDto>(), new ObservableCollection <WordDto>()); DataContext = view; SearchField.Text = SEARCH_FIELD_EMPTY_MESSAGE; SearchField.Foreground = Brushes.Gray; }
public SetCreationPageView(SetCreationPageView view) { SelectedItem = null; SetWords = view.SetWords; Words = view.Words; }