У меня есть код, который выглядит следующим образом:
ResourceDictionary res = (ResourceDictionary)Application.LoadComponent(new Uri("Style.xaml", UriKind.Relative));
Style style = new Style();
style.Resources = (Style)res["ComboBoxTextBox"];
VS2008 возвращает ошибку:
style.Resources = ( Style ) res ["ComboBoxTextBox"];
Cannot implicitly convert type 'System.Windows.Style' to 'System.Windows.ResourceDictionary'
Как правильно назначить стиль из ResourceDictionary
для управления?