Skip to content

Instantly share code, notes, and snippets.

@buchizo
Created February 10, 2025 01:51
Show Gist options
  • Save buchizo/2b7a3f8fa2936bdce09044fe89ec5f32 to your computer and use it in GitHub Desktop.
Save buchizo/2b7a3f8fa2936bdce09044fe89ec5f32 to your computer and use it in GitHub Desktop.
.NET 9 WPF+FluentUI ComboBox scrollbar
<ComboBox>
<ComboBox.Resources>
<Style TargetType="{x:Type ComboBox}" BasedOn="{StaticResource {x:Type ComboBox}}">
<Setter Property="ScrollViewer.VerticalScrollBarVisibility" Value="Visible" />
</Style>
</ComboBox.Resources>
</ComboBox>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment