I have noticed a behavior issue with RadTabStrip Control, On adding more than 145 items, our application hangs and it goes to "Not responding mode". Also If we add more than 95 items to the control, the tab scroll property is not working properly.
Our client requirement demands populating more than 600 items in the control. Is there any work around to solve the issue?
-- Code--
using Telerik.WinControls.UI;
namespace Telerik_Tab
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
for (int i = 0; i < 100; i++)
{
TabItem objNewItem = new TabItem();
objNewItem.Text = "Tab " + i.ToString();
radTabStrip1.Items.Add(objNewItem);
}
}
private void AddNewTab_Click(object sender, EventArgs e)
{
for (int i = 0; i < 10; i++)
{
TabItem objNewItem = new TabItem();
objNewItem.Text = "Tab " + radTabStrip1.Items.Count.ToString();
radTabStrip1.Items.Add(objNewItem);
}
}
}
}
Hi,
I need to display space between box and text in checkbox.
The only properly who seems to handle this behaviour is the TextAlignment.
But when I set the TextAlignmet to be left the space that appear is very small.
Is there any other property that can answer my needs?
Thank you.

using Telerik.WinControls.UI.Export;...private void btnExport_Click(object sender, EventArgs e) { //Create a new Temporary File ExportToExcelML exporter = new ExportToExcelML(this.mainGrid); string fileName = Path.GetTempPath() + "ExportData.xls"; //Export the grid to the file bool exportThemeColors = true; exporter.HiddenColumnOption = HiddenOption.DoNotExport; exporter.SheetMaxRows = ExcelMaxRows._65536; exporter.ExportVisualSettings = exportThemeColors; exporter.RunExport(fileName); //Open it in Excel Process process = new Process(); process.StartInfo.FileName = fileName; process.Start(); }