or
| cmbTipoCriterioPai.BindingContext = new BindingContext(); |
| // Populating the BindingSource |
| ServicoTipoCriterio servicoTipoCriterio = new ServicoTipoCriterio(); |
| bsPais.DataSource = servicoTipoCriterio.GetDadosPesquisa("0=0"); |
| servicoTipoCriterio.Dispose(); |
| // DataBinding the RadComboBox |
| cmbTipoCriterioPai.DisplayMember = "Designacao"; |
| cmbTipoCriterioPai.ValueMember = "ID_TipoCriterio"; |
| cmbTipoCriterioPai.DataSource = bsPais; |
| // Adding the SelectedValue DataBinding |
| cmbTipoCriterioPai.DataBindings.Clear(); |
| cmbTipoCriterioPai.DataBindings.Add("SelectedValue", myObject, "ID_TipoCriterioPai"); |
Ctrl-A does not select all rows.
Ctrl-C does not copy selected row contents to clipboard.
I have tried to make my own implementation of these features but I can't find something similar to the DataGridView.GetClipboardContent-method.
Also, I couldn't find a way to ovverride the "Copy"-function that exists on the context-menu. Is there an event to subscribe on?
Thanks in advance!