0
這聽起來很奇怪,但是有可能實現這樣的事情嗎?我想要的是一個具有標準行爲的普通滾動條,除非用戶不能單擊,抓取和上下移動 - 它應該在那裏,當內容滾動時移動。WPF - 帶有無法點擊的滾動條的列表框
這聽起來很奇怪,但是有可能實現這樣的事情嗎?我想要的是一個具有標準行爲的普通滾動條,除非用戶不能單擊,抓取和上下移動 - 它應該在那裏,當內容滾動時移動。WPF - 帶有無法點擊的滾動條的列表框
<Grid>
<Grid.Resources>
<Style TargetType="ScrollBar">
<Setter Property="IsHitTestVisible" Value="False" />
</Style>
</Grid.Resources>
<ListBox Height="150">
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
<ListBoxItem>1</ListBoxItem>
</ListBox>
</Grid>
+1:你說得對,在這種情況下更適合'IsHitTestVisible'。 –
這很完美,謝謝。 – InfinitePii