7

C# 4.0 を使用して winform アプリケーションを開発しています。

ボタンが1つあるフォームがあります。ボタンの BackColor を黄色に変更しました。実行時に、ボタンの上にマウスを移動すると、ボタンの背景色がわずかに変化します。これを無効にしたい。何があっても変わらない色でありたい。

フォームコードは次のとおりです。

using System;
using System.Windows.Forms;

namespace Something
{
    public partial class Home : Form
    {
        public Home()
        {
            InitializeComponent();
        }

    }
}



namespace Something
{
partial class Home
{
    /// <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()
    {
        System.ComponentModel.ComponentResourceManager resources = new System.ComponentModel.ComponentResourceManager(typeof(Home));
        this.button1 = new System.Windows.Forms.Button();
        this.SuspendLayout();
        // 
        // button1
        // 
        this.button1.BackColor = System.Drawing.Color.Yellow;
        resources.ApplyResources(this.button1, "button1");
        this.button1.Name = "button1";
        this.button1.UseVisualStyleBackColor = false;
        // 
        // Home
        // 
        resources.ApplyResources(this, "$this");
        this.AutoScaleMode = System.Windows.Forms.AutoScaleMode.Font;
        this.BackColor = System.Drawing.Color.FromArgb(((int)(((byte)(226)))), ((int)(((byte)(227)))), ((int)(((byte)(228)))));
        this.Controls.Add(this.button1);
        this.FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
        this.Name = "Home";
        this.WindowState = System.Windows.Forms.FormWindowState.Maximized;
        this.Load += new System.EventHandler(this.Home_Load);
        this.ResumeLayout(false);

    }

    #endregion

    private System.Windows.Forms.Button button1;



}
}

前もって感謝します。

4

4 に答える 4

2

私のような人々は、コンパイラが何であるかを知りません。私はそれが何であるかを調べ、それを行う方法を見つけました。このように見えるはずです。

public Menu2**()
    {
        button1.FlatAppearance.MouseOverBackColor = button1.BackColor;
        button1.BackColorChanged += (s, e) => {
            button1.FlatAppearance.MouseOverBackColor = button1.BackColor;
        };

**Menu2 は、作業中のフォームの名前です。

于 2017-03-02T20:08:52.207 に答える