I have a FlipView, which is working great, but I'd like to disable the < and > arrows that fade in while scrolling.
相关问题
- Generic Generics in Managed C++
- How to Debug/Register a Permanent WMI Event Which
- 'System.Threading.ThreadAbortException' in
- Bulk update SQL Server C#
- Inheritance impossible in Windows Runtime Componen
相关文章
- .net中MessageBox.Show使用问题
- IdentityServer 报错:"idp claim is missing"
- 在 IdentityServer 中如何给 id token 添加更多信息
- IdentityServer 的 Selector 在哪个 nuget 包
- 使用 IdentityServer 的项目遭遇错误:"IDX20803: Unable to obt
- ASP.NET Core ConfigureServices 中从 appsettings.json
- .netCore 控制台程序输出配置问题
- WPF MVVMLight:在ViewModel中,开子线程为ObservableCollectio
Here are 2 options.
Option 1. In
FlipView.Loaded
event dynamically remove the arrow buttons.Option 2. Edit the template of the
FlipView
control (as Filip Skakun said in his answer).I think that would break the scenario for keyboard/mouse users, no?
You could remove the buttons from the control template if you really need to.