4

私は単純なコードを書きます:

namespace Test01
{
    partial class Form1
    {
        /// <summary>
        /// Required designer variable.
        /// </summary>
        private System.ComponentModel.IContainer components = null;

        /// <summary>
        /// Clean up any resources being used.
        /// </summary>
        /// <param name="disposing">true if managed resources should be disposed; otherwise, false.</param>
        protected override void Dispose(bool disposing)
        {
            if (disposing && (components != null))
            {
                components.Dispose();
            }
            base.Dispose(disposing);
        }

        #region Windows Form Designer generated code

        /// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            this.panel1 = new System.Windows.Forms.Panel();
            this.button1 = new System.Windows.Forms.Button();
            this.button2 = new System.Windows.Forms.Button();
            this.button3 = new System.Windows.Forms.Button();
            this.button4 = new System.Windows.Forms.Button();
            this.panel1.SuspendLayout();
            this.SuspendLayout();
            // 
            // panel1
            // 
            this.panel1.AutoScroll = true;
            this.panel1.Controls.Add(this.button4);
            this.panel1.Controls.Add(this.button3);
            this.panel1.Controls.Add(this.button2);
            this.panel1.Location = new System.Drawing.Point(24, 13);
            this.panel1.Name = "panel1";
            this.panel1.Size = new System.Drawing.Size(206, 43);
            this.panel1.TabIndex = 0;
            // 
            // button1
            // 
            this.button1.Location = new System.Drawing.Point(89, 62);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(75, 23);
            this.button1.TabIndex = 1;
            this.button1.Text = "button1";
            this.button1.UseVisualStyleBackColor = true;
            this.button1.Click += new System.EventHandler(this.button1_Click);
            // 
            // button2
            // 
            this.button2.Location = new System.Drawing.Point(3, 3);
            this.button2.Name = "button2";
            this.button2.Size = new System.Drawing.Size(75, 23);
            this.button2.TabIndex = 2;
            this.button2.Text = "button2";
            this.button2.UseVisualStyleBackColor = true;
            // 
            // button3
            // 
            this.button3.Location = new System.Drawing.Point(84, 3);
            this.button3.Name = "button3";
            this.button3.Size = new System.Drawing.Size(75, 23);
            this.button3.TabIndex = 3;
            this.button3.Text = "button3";
            this.button3.UseVisualStyleBackColor = true;
            // 
            // button4
            // 
            this.button4.Location = new System.Drawing.Point(165, 3);
            this.button4.Name = "button4";
            this.button4.Size = new System.Drawing.Size(75, 23);
            this.button4.TabIndex = 4;
            this.button4.Text = "button4";
            this.button4.UseVisualStyleBackColor = true;
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(6F, 13F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(251, 98);
            this.Controls.Add(this.button1);
            this.Controls.Add(this.panel1);
            this.Name = "Form1";
            this.Text = "Form1";
            this.panel1.ResumeLayout(false);
            this.ResumeLayout(false);

        }

        #endregion

        private System.Windows.Forms.Panel panel1;
        private System.Windows.Forms.Button button4;
        private System.Windows.Forms.Button button3;
        private System.Windows.Forms.Button button2;
        private System.Windows.Forms.Button button1;
    }
}

と:

namespace Test01
{
    public partial class Form1 : Form
    {
        public Form1()
        {
            InitializeComponent();
        }

        private void button1_Click(object sender, EventArgs e)
        {
            panel1.Controls.Remove(button4);
        }
    }
}

私はそれを実行し、次の結果を得ました:

サンプル

最初の列でボタン1を押すだけです-期待どおりに機能します。

2列目でスクロールバーを移動してボタン1を押します-ボタン4は消えましたが、スクロールバーはまだ存在しています。折りたたんで展開すると、ウィンドウのスクロールバーが消えました。

3 番目の列で、クラシック テーマをオンにして、button1 を押すだけです。すべて OK です。

stackoverflow1 stackoverflow2 stackoverflow3を読んで、validate、invalidate、update、refresh を使用しようとしましたが、役に立ちませんでした。それで、どうすればこの問題を解決できますか?

4

3 に答える 3

3

ボタンを削除する前に、スクロールバーの位置をゼロにリセットします。

    private void button1_Click(object sender, EventArgs e)
    {
        panel1.HorizontalScroll.Value = 0;
        panel1.Controls.Remove(button4);
    }

編集

それ以来、スクロールバーの値がゼロの場合、このメソッドが常に機能するとは限らないことがわかりました。スクロールバーを常にクリアするように強制するさまざまな方法を試しましたが、確実に機能するように見える唯一のことは、ボタンを削除する前にその値を 1 に設定してから 0 に設定することです。

        panel1.HorizontalScroll.Value = 1;
        panel1.HorizontalScroll.Value = 0;
        panel1.Controls.Remove(button4);

醜いですが、うまくいくようです。私は個人的にこれをフレームワークのバグと見なします。

于 2012-07-17T15:00:00.260 に答える
1

代わりに、パネルを FlowLayoutPanel に置き換えてみてください。交換するパネルと同じサイズを使用してください。FlowLayoutPanel コントロールで、 と を設定しAutoScroll = TrueますFlowDirection = TopDown

パネルはコントロールを移動する必要があり、スクロールバーについても心配する必要はありません。

于 2012-07-17T15:22:20.153 に答える
0

ウィンドウ ループに再び入るように、BeginInvoke で refresh メソッドを呼び出してみてください。

this.BeginInvoke((Action)scrollBar.PerformLayout);

現在のメソッドから (呼び出しなしで) 呼び出すと、再レンダリングが回避される場合があります。

于 2012-07-17T14:44:19.580 に答える