Мне нужно стилизовать ComboBoxItem для ComboBox, который создается в коде позади. Вот мой код пока
ComboBox cbo1 = new ComboBox();
cbo1.IsTextSearchEnabled = true;
cbo1.IsEditable = true;
grid1.Children.Add(cbo1);
cbo1.Dispatcher.BeginInvoke(new StyleComboBoxItemDelegate(ref StyleComboBoxItem(cbo1), System.Windows.Threading.DispatcherPriority.Background);
public delegate void StyleComboBoxItemDelegate(ComboBox cbo_tostyle);
public void StyleComboBoxItem(ComboBox cbo_tostyle)
{
//code to style the comboboxitem;
}
Я получаю следующие ошибки
1. A ref or out argument must be an assignable variable
2. Method name expected
Может, кто-нибудь поможет мне указать, что я делаю неправильно?
Большое спасибо