Hi
I had the following problem today, and i was wondering if there is a solution for my problem.
My idea was to build anonymous classes and use it as a datasource for a WinForm Bindingsource:
public void Init()
{
var option1 = new
{
Id = TemplateAction.Update,
Option = "Update the Templates",
Description = "Bla bla 1."
};
var option2 = new
{
Id = TemplateAction.Download,
Option = "Download the Templates",
Description = "Bla bla 2."
};
var list = new[] {option1, option2}.ToList();
bsOptions.DataSource = list; // my BindingSource
// cboTemplates is a ComboBox
cboTemplates.DataSource = bsOptions;
cboTemplates.ValueMember = "Id";
cboTemplates.DisplayMember = "Option";
lblInfoTemplates.DataBindings.Add("Text", bsOptions, "Description");
}
That works fine so far.
The problem i had is to get Id out of the "Current" property of the BindingSource, because i can't cast it back to the Anonymous Type:
private void cmdOK_Click(object sender, EventArgs e)
{
var option = (???)bsOptions.Current;
}
Is guess there is no way to find out the type of "Current" and access the "Id" Property? Maybe someone have a good solution...
I know there are other ways to get the Id (Reflection, reading the value from the ComboBox, not using anonymous tpyes,...) I'm just courious if it's possible to get the Type out of bsOptions.Current...
Thanks in advance