0
我想知道是否有scrollviewer.panning在C#代碼中的組合框。C#代碼中缺少Combobox scrollviewer.panning?
以下XAML代碼:
<ComboBox ScrollViewer.PanningMode="Both" />
的作品,但我如何創建C#代碼的新組合框具有以下屬性?
我想知道是否有scrollviewer.panning在C#代碼中的組合框。C#代碼中缺少Combobox scrollviewer.panning?
以下XAML代碼:
<ComboBox ScrollViewer.PanningMode="Both" />
的作品,但我如何創建C#代碼的新組合框具有以下屬性?
ScrollViewer sv = comboBox.Template.FindName("DropDownScrollViewer", comboBox) as ScrollViewer;
sv.PanningMode = PanningMode.Both;
摘自this問題。