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.
是否可以将所有默认光标(由 .NET 定义)更改为单个皮肤样式的其他光标?我的意思是,如果鼠标触摸当前窗口,则应使用定义样式中的所有默认光标。
您可以使用该Mouse.OverrideCursor属性全局更改Cursor整个WPF应用程序
Mouse.OverrideCursor
Cursor
WPF
例子:
Mouse.OverrideCursor = Cursors.Hand;