У меня есть два ListBox элементы управления, которые я использую для отображения полученных и переданных данных, шрифт один и тот же для обоих: Courier New, 8.25pt.
Проблема в том, что когда в ListBox есть контент
код>, который требует прокрутки вправо. Я не могу видеть все данные, даже когда прокручиваю до самой дальней точки вправо. Чем это можно объяснить и как это исправить?

Это фрагмент формы Designer.cs для верхнего списка< /код>:
this.lstTx.AccessibleDescription = "lstTrans";
this.lstTx.Anchor = ((System.Windows.Forms.AnchorStyles)((((System.Windows.Forms.AnchorStyles.Top | System.Windows.Forms.AnchorStyles.Bottom)
| System.Windows.Forms.AnchorStyles.Left)
| System.Windows.Forms.AnchorStyles.Right)));
this.lstTx.Font = new System.Drawing.Font("Consolas", 8.25F);
this.lstTx.FormattingEnabled = true;
this.lstTx.HorizontalScrollbar = true;
this.lstTx.Location = new System.Drawing.Point(8, 20);
this.lstTx.Margin = new System.Windows.Forms.Padding(0);
this.lstTx.MinimumSize = new System.Drawing.Size(516, 82);
this.lstTx.Name = "lstTx";
this.lstTx.ScrollAlwaysVisible = true;
this.lstTx.Size = new System.Drawing.Size(516, 95);
this.lstTx.TabIndex = 9;
Подробнее здесь: https://stackoverflow.com/questions/790 ... d-to-right
Мобильная версия