VST menu wrap instead of scroll
Posted: Fri Jun 16, 2023 1:28 pm
Once upon a time before some updates changed how things work, VSTs used to wrap around in the menu instead of scroll.
You can get that back with this...
ex. default theme ... open up Buzz\Themes\Default\MachineView\MVResources.xaml
search for <Style x:Key="ContextMenuItemStyle">
change it to look like this
you add the highlighted bit:
You can alternatively change MaxHeight="{x:Static SystemParameters.FullPrimaryScreenHeight}" to something like MaxHeight="600" or something else to your preference.
You can get that back with this...
ex. default theme ... open up Buzz\Themes\Default\MachineView\MVResources.xaml
search for <Style x:Key="ContextMenuItemStyle">
change it to look like this
you add the highlighted bit:
Code: Select all
<Setter Property="MenuItem.ItemsPanel">
<Setter.Value>
<ItemsPanelTemplate>
<WrapPanel Orientation="Vertical" IsItemsHost="True" MaxHeight="{x:Static SystemParameters.FullPrimaryScreenHeight}"/>
</ItemsPanelTemplate>
</Setter.Value>
</Setter>