How do I set the Size of a DockPanel in a docked state at runtime? Here's my simple code.
panel = new Telerik.WinControls.Docking.DockPanel();
panel.DockState = DockState.Docked;
panel.Size = new Size(250, 250);
For some reason the Size is not set. It just remains the same.
Thanks,
Ryan
GridViewRowInfo[] selectedRows = new GridViewRowInfo[this.radGridViewAcuse.SelectedRows.Count];this.radGridViewAcuse.SelectedRows.CopyTo(selectedRows, 0);
this.radGridViewEtiqueta.GridElement.BeginUpdate();
for (int i = 0; i < selectedRows.Length; i++){
this.radGridViewEtiqueta.Rows.AddNew((GridViewDataRowInfo)selectedRows[i]);
}
this.radGridViewEtiqueta.GridElement.EndUpdate();
this code raise exception.
Is possible add rows to second Grid?
Do both Grid have same Columns?
Is possible drag and drop?
thanks