如何禁用FlipView上的箭头?

时间:2012-08-10 16:54:52

标签: .net xaml windows-8 windows-runtime winrt-xaml

我有一个FlipView,效果很好,但我想禁用<和>滚动时淡入的箭头。

2 个答案:

答案 0 :(得分:10)

我认为这会破坏键盘/鼠标用户的情况,不是吗?

如果确实需要,可以从控件模板中删除按钮。

答案 1 :(得分:1)

以下是两个选项。

选项1。private void flipView_Loaded(object sender, RoutedEventArgs e) { Grid grid = (Grid)VisualTreeHelper.GetChild(flipView, 0); for (int i = grid.Children.Count - 1; i >= 0; i--) if (grid.Children[i] is Button) grid.Children.RemoveAt(i); } 事件中动态删除箭头按钮。

FlipView

选项2。编辑from Tkinter import * the_window = Tk() def button_pressed (): content = entry.get() if (content == '1'): print 'lol' else: print 'boo' entry = Entry(master=None, width = 8, bg='grey').grid(row=2, column = 2) button = Button(master=None, height=1, width=6, text='Go!', command=button_pressed).grid(row=2, pady=5, column=3) the_window.mainloop() 控件的模板(正如Filip Skakun在回答中所述)。