デフォルトで文字列を四角形に絞り込むパネルがあります。パネル 300 の幅を float 型の変数に設定し、それに文字列を絞り込みますが、次の項目を識別したい描画されている残りのスペースに適応させることができます。または、新しい行から開始する必要があります。以下のように残りのスペースを計算しています。ただし、float を sizeF にキャストすることはできません。
foreach (btnObject custItem in this.lstAcceptedCustomizatio)
{
System.Drawing.SizeF newString = g.MeasureString(custItem.BtnName + ", ", this.Font); //get the size of the text property
System.Drawing.SizeF drawnString = g.MeasureString(basketItemDescription, this.Font); //get the size of the text property
if(newString.Width> (this.Width-drawnString)) //THIS LINE DO NOT WORK
basketItemDescription = basketItemDescription + custItem.BtnName + ", ";
}