-1

ボタンの背景画像として使用したい .gif ファイルがあります。私がこれをやりたい主な理由は (なぜ私がこのようにしたいのか不思議に思う人もいると思います)、ボタンはクラスのインスタンスに関連しており、これらのクラスを監視したいからです。クラス(したがってボタン)が「警戒」状態になったとき、これらのアニメーションGIFを使用したいと思います。私はもう試した;

mainUI.Controls["btn" + device.deviceButtonNumber].BackgroundImage = (System.Drawing.Image)Properties.Resources.red_orange;

しかし、.BackgroundImage がアニメーション GIF をサポートしていないことは、私の理解です。私はstackoverflow全体でいくつかの提案を試みましたが、BackgroundImageLayoutを中央に設定するなど、これらのどれもうまくいかないようです。

最後の手段として、画像を gif のように手動で循環させることができると思いますが、これにより作業が増えるため、物事をシンプルに保ちたいと思います。助言がありますか?

編集:申し訳ありませんが、追加するのを忘れていました。これはWinformsにあります。

編集2:

例えば。ボタンを動的に作成すると、次のようになります。

  Button btnAdd = new Button();
  btnAdd.Text = mDevices[i].deviceDescription;
  btnAdd.Location = new Point(mDevices[i].deviceXPos.Value, mDevices[i].deviceYPos.Value);

私はまだアクセスできます:

 btnAdd.Image  <- note i can access image.

その後、後で別のスレッドからそれらを変更するようになると、そのようにわかります。

 mainUI.Controls["btn" + device.deviceButtonNumber].text = blah blah
 mainUI.Controls["btn" + device.deviceButtonNumber].Location = blah blah

ただし、アクセスできません。

 mainUI.Controls["btn" + device.deviceButtonNumber].Image
4

2 に答える 2

1
/// <summary>
        /// Required method for Designer support - do not modify
        /// the contents of this method with the code editor.
        /// </summary>
        private void InitializeComponent()
        {
            System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Form1));
            this.button1 = new System.Windows.Forms.Button();
            this.SuspendLayout();

            //  this.button1.Image = new Bitmap(@"C:\images\dance.gif");

            // if you import the local resource 
            this.button1.Image = ((System.Drawing.Image)(resources.GetObject("button1.Image")));
            this.button1.ImageAlign = System.Drawing.ContentAlignment.TopRight;
            this.button1.Location = new System.Drawing.Point(109, 73);
            this.button1.Name = "button1";
            this.button1.Size = new System.Drawing.Size(523, 437);
            this.button1.TabIndex = 1;
            this.button1.TextAlign = System.Drawing.ContentAlignment.MiddleLeft;
            this.button1.UseVisualStyleBackColor = true;
            // 
            // Form1
            // 
            this.AutoScaleDimensions = new System.Drawing.SizeF(8F, 17F);
            this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
            this.ClientSize = new System.Drawing.Size(807, 640);
            this.Controls.Add(this.button1);
            this.Font = new System.Drawing.Font("Tahoma", 8.25F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, ((byte)(0)));
            this.Name = "Form1";
            this.Text = "Image In Button Control";
            this.ResumeLayout(false);

        }
于 2012-06-12T13:12:54.653 に答える
0

PictureBoxの代わりにを使用することをお勧めします。画像とイベントButtonPictureBoxサポートします.gifclick

于 2012-06-12T13:07:26.700 に答える