早上在做一个demo的时候,需要使用Button只展示Preview效果,但不让它得focus。

So easy !

 

   public class MyButton : Button
    {
        
public MyButton()
        {
            
this.SetStyle(ControlStyles.Selectable, false);
        }     
    }

 

相关文章:

  • 2022-12-23
  • 2021-07-17
  • 2021-10-23
  • 2022-12-23
  • 2021-12-19
  • 2022-12-23
  • 2021-12-19
  • 2022-12-23
猜你喜欢
  • 2022-12-23
  • 2021-08-24
  • 2022-12-23
  • 2022-02-03
  • 2022-12-23
  • 2021-12-04
  • 2021-08-16
相关资源
相似解决方案