重複の可能性:
datagrid(wpf)でパスをバインドしていません
datagridのコンボボックス!!! ahtung!
<ComboBox Name="mex" DataContext="{Binding RelativeSource={RelativeSource Self}}" Style="{DynamicResource ComboBoxStyle}" ItemsSource="{Binding Path=combolist}" SelectionChanged="status_SelectionChanged" Height="Auto" Width="Auto">
</ComboBox>
それで
MySqlCommand status_db = new MySqlCommand("select name_ru from request_status", conn);
MySqlDataReader combodata = status_db.ExecuteReader();
List<string> combolist = new List<string>();
while (combodata.Read())
{
combolist.Add(combodata.GetString(0));
}
コンボボックス内のアイテムが空になるのはなぜですか?私はおかしくなりそうだ!!!