WPF,请教控件的可视化状态
WPF中,控件的可视化状态,不是有Normal、Pressed 、 MouseOver...........么
请问一共有哪些这样的状态字符串,我需要MSDN的链接。谢谢!!
------解决方案--------------------能描述详细点吗?
------解决方案--------------------没有你说的状态。建议找个正规的入门书开始阅读。
------解决方案--------------------你说的是鼠标和键盘的状态?
------解决方案--------------------检查鼠标左键是不是按下:
private void timer1_Tick(object sender, EventArgs e) {
this.Text = "Mouse Is " + (MouseButtons == MouseButtons.Left);
}
代码来自:
http://stackoverflow.com/questions/10820788/get-mouse-state-down-up-c-sharp
------解决方案--------------------每种控件都各自有不同状态组,比如
button:http://msdn.microsoft.com/en-us/library/ms753328.aspx
textbox: http://msdn.microsoft.com/en-us/library/ms752068.aspx
其它控件:Control Styles and Templates