我在我的wpf应用程序中有组合框。当我打开它时,它正常打开。但是我的组合框中的滚动条从底部开始有一个空白。我想从顶部设置一个空白的滚动条。请给我答案...
答案 0 :(得分:0)
只需设置dropdownlist.selectedindex = 0 .
答案 1 :(得分:0)
找到ScrollViewer控件,然后使用其方法进行滚动。
例如:
from urllib.parse import unquote
path = r'F:\media\owner\166\image\first%20page%20emil.jpg'
path = unquote(path)
print(path)
F:\media\owner\166\image\first page emil.jpg
或
var scrollViewerCombo = this.SubjectSelectComboBox.Template.FindName("PART_ScrollViewer", this.SubjectSelectComboBox) as ScrollViewer;
scrollViewerCombo?.ScrollToTop();