The ComboBox Control Template has a ScrollViewer. How can I get a reference to it from an instance of a ComboBox?
I tried naming it \"ScrollViwer1\" and using this, bu
You can use FrameworkTemplate.FindName Method.
ScrollViewer sv = comboBox.Template.FindName("DropDownScrollViewer", comboBox) as ScrollViewer; if (sv != null) { // do something... }