我正在使用WPF TabControlEx(關閉標籤)。如何使用鼠標中鍵關閉TabControlEx選項卡?
我正在尋找一種方法來關閉選項卡,並用鼠標滾輪單擊選項卡標題。
有什麼建議嗎?
非常感謝你們的幫助
我正在使用WPF TabControlEx(關閉標籤)。如何使用鼠標中鍵關閉TabControlEx選項卡?
我正在尋找一種方法來關閉選項卡,並用鼠標滾輪單擊選項卡標題。
有什麼建議嗎?
非常感謝你們的幫助
一下添加到它有可關閉的選項卡你對選項卡標題XAML:
<Grid.InputBindings>
<MouseBinding MouseAction="MiddleClick" Command="{Binding CloseCommand}" />
</Grid.InputBindings>
有你CloseCommand
您的ViewModel關閉該選項卡。您可能還需要通過CommandParameter
的特定選項卡。
非常感謝RandomEngry。這工作很棒! – WPF