リストボックスの内容を決定する他の多くのコントロールを含むリストボックスコントロールを含むフォームがあります。リストボックスに項目を追加すると、スクロールバーの範囲が正しく設定されますが、リストボックスの項目を更新すると(this.lstResources.Items [index] = myUriを使用)、最後の数文字を切り捨ててスクロールバーの範囲が最大項目幅を超えます。スクロールバーは引き続き動作しますが、このようにリストボックスを更新すると、リスト内の項目の予期せぬ許容できないスクロール範囲が発生します。フォームの両方で、私は(最新の情報に更新を試してみましたリストボックスの水平スクロールバーが正しく更新されない
this.parentClassReference.lstResources.Items.Add(myUri);
this.parentClassReference.lstResources.Items[index] = myUri;
this.parentClassReference.lstResources.Items.RemoveAt(index);
)およびアップデート():次のように私は、このリストボックスで実行変更操作がある
public System.Windows.Forms.ListBox lstResources;
this.lstResources = new System.Windows.Forms.ListBox();
this.lstResources.FormattingEnabled = true;
this.lstResources.HorizontalScrollbar = true;
this.lstResources.Location = new System.Drawing.Point(331, 122);
this.lstResources.Name = "lstResources";
this.lstResources.Size = new System.Drawing.Size(307, 316);
this.lstResources.TabIndex = 8;
this.lstResources.Click += new System.EventHandler(this.ResourcesPage.LstResources_Click);
:ここで私は私のリストボックスを実装しています方法ですリストボックスのコントロールには影響しません。私は、リストボックスのスクロールバーの問題については、すべてを見てきましたが、この独特の再描画の問題はないようです。
これは、それがどのように見えるかです:
これは実際に何が起こっているかである。
私は何かを明らかに不足しているか、おそらく間違ってアイテムを変更してる感じを持っています、私はこのアイデアから新鮮です。私はC#とUIの設計に全く新しいものではありませんが、私はすべての根っこの制御操作も知っているとは言えません。どんな援助も高く評価されるだろう。
EDIT 1:これは問題を再現する必要があるサンプルフォームです。私はこの問題は、アンパサンド文字であるように思わ
public partial class SampleListBoxForm : Form
{
public Dictionary<string, string> CurrentUriQuery { get; set; }
public SampleListBoxForm()
{
this.CurrentUriQuery = new Dictionary<string, string>();
this.InitializeComponent();
}
private void btnAdd_Click(object sender, EventArgs e)
{
this.UpdateParams("sampleApp");
this.listBox1.Items.Add(this.GenerateURI());
this.listBox1.Refresh();
}
private void btnUpdate_Click(object sender, EventArgs e)
{
int index = 0;
this.UpdateParams("sampleApp2");
for (; index < this.listBox1.Items.Count; index++)
{
this.listBox1.Items[index] = this.GenerateURI();
}
}
private void UpdateParams(string filename)
{
this.CurrentUriQuery = new Dictionary<string, string>();
this.CurrentUriQuery["filename"] = filename;
this.CurrentUriQuery["url"] = @"C:\Users\me\Desktop\" + filename;
this.CurrentUriQuery["type"] = "dynamicType";
this.CurrentUriQuery["p1"] = "foo";
this.CurrentUriQuery["p2"] = "bar";
this.CurrentUriQuery["p3"] = "stuff";
this.CurrentUriQuery["p4"] = "test";
}
private string GenerateURI()
{
StringBuilder currentUri = new StringBuilder();
bool firstParam = true;
currentUri.Append(this.CurrentUriQuery["filename"]);
foreach (KeyValuePair<string, string> pair in this.CurrentUriQuery)
{
if (pair.Key != "url" && pair.Key != "filename" && pair.Value != string.Empty && pair.Value != "0")
{
if (firstParam)
{
currentUri.Append("?");
firstParam = false;
}
else
{
currentUri.Append("&");
}
currentUri.Append(pair.Key);
currentUri.Append("=");
currentUri.Append(pair.Value.Replace(" ", ""));
}
}
return currentUri.ToString();
}
public string[] ExtractPathAndQueryFromUriString(string uriString)
{
string[] pathAndQuery = new string[2];
if (uriString.Contains('?'))
{
pathAndQuery[0] = uriString.Split('?')[0];
pathAndQuery[1] = uriString.Split('?')[1];
}
else if (uriString.Contains("%3F"))
{
string[] stringSeparator = new string[] { "%3F" };
pathAndQuery[0] = uriString.Split(stringSeparator, StringSplitOptions.None)[0];
pathAndQuery[1] = uriString.Split(stringSeparator, StringSplitOptions.None)[1];
}
else
{
pathAndQuery[0] = uriString;
pathAndQuery[1] = string.Empty;
}
return pathAndQuery;
}
}
それを再現することはできません:
ここでは、迅速かつ汚いDrawItemのバージョンがあります。 ListBox項目を変更すると、スクロールバーの範囲が変更されます。 – LarsTech
スクロールバーの範囲を追跡して自分でデバッグできる方法はありますか?おそらく非公開のプロパティですか?私はもっと多くのコードを提供するだろうが、私は残りが適切であるとは思わない。私はそれらを更新するために各リストアイテムをループしていますが、それは関連する外部コードの程度です。 編集:これらの操作がリストボックスと同じオブジェクトで実行されていないことがわかります。 – covertCoder
それとは逆のやり方です。新しいプロジェクトを作成し、最小限のコードで問題を再現します。そのコードを投稿してください。誰も見ることができないコードを見ているので、助けが難しいです。 – LarsTech