Simple code
new System.Threading.Thread(delegate (){ var grid = new RadGridView(); grid.Columns.Add("column"); grid.Rows.Add(new Object[] { "value1" }); grid.Dock = System.Windows.Forms.DockStyle.Fill; var form = new RadForm(); form.Controls.Add(grid); form.ShowDialog();}).Start();
When i try right click + copy on cell i got error:
Current thread must be set to single thread apartment (STA) mode before OLE calls can be made. Ensure that your Main function has STAThreadAttribute marked on it.