Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何使用 C# 在 windows phone 7 应用程序中将按钮控件保持在按下状态?我想在屏幕上有很多不同的按钮,但是当我按下任何一个按钮时,我希望它保持按下状态。有任何想法吗?
另外,一旦它处于按下状态,有没有办法手动“按下”它?
谢谢
如果按钮属性如下: foreground:white background:black
然后在按下状态下,它的属性将是 前景:黑色 背景:白色
如果您在单击事件中更改按钮的属性,则可以看到它被按下。并且设置按钮的 IsEnabled 属性可以防止它触发按钮上的事件。