Почему я получаю белую рамку вокруг кнопки при запуске приложения в c # - PullRequest
0 голосов
/ 18 февраля 2019

enter image description here

Когда я запускаю свое приложение, у меня появляется белая рамка вокруг кнопки в моей форме.И когда я нажимаю в любом месте формы, кнопка становится нормальной.Я использовал плоский стиль на кнопке и не ставил себе границу для кнопки.Кажется, эта граница вызвана кнопкой вкладки.Как я могу удалить эту странную границу из моего приложения.

Вот настройки для кнопки.

  this.homeButton.Anchor = ((System.Windows.Forms.AnchorStyles) 
  (((System.Windows.Forms.AnchorStyles.Top | 
  System.Windows.Forms.AnchorStyles.Left) 
        | System.Windows.Forms.AnchorStyles.Right)));
        this.homeButton.BackColor = System.Drawing.Color.Transparent;
        this.homeButton.BackgroundImageLayout = 
 System.Windows.Forms.ImageLayout.None;
        this.homeButton.FlatAppearance.BorderSize = 0;
        this.homeButton.FlatAppearance.MouseOverBackColor = 
 System.Drawing.Color.FromArgb(((int)(((byte)(231)))), ((int)(((byte) 
 (76)))), ((int)(((byte)(60)))));
        this.homeButton.FlatStyle = System.Windows.Forms.FlatStyle.Flat;
        this.homeButton.Font = new System.Drawing.Font("Century Gothic", 
 12F, System.Drawing.FontStyle.Regular, System.Drawing.GraphicsUnit.Point, 
 ((byte)(0)));
        this.homeButton.ForeColor = System.Drawing.Color.White;
        this.homeButton.Image = 
 global::CEFSharpBrowserTesting.Properties.Resources.user_icon_16;
        this.homeButton.ImageAlign = 
 System.Drawing.ContentAlignment.MiddleLeft;
        this.homeButton.Location = new System.Drawing.Point(11, 12);
        this.homeButton.MaximumSize = new System.Drawing.Size(0, 33);
        this.homeButton.MinimumSize = new System.Drawing.Size(192, 33);
        this.homeButton.Name = "homeButton";
        this.homeButton.Size = new System.Drawing.Size(192, 33);
        this.homeButton.TabIndex = 3;
        this.homeButton.Text = "    Home";
        this.homeButton.TextImageRelation = 
        System.Windows.Forms.TextImageRelation.ImageBeforeText;
        this.homeButton.UseVisualStyleBackColor = false;
        this.homeButton.Click += new 
        System.EventHandler(this.homeButton_Click);
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...