在tkinter列表框中动态选择多行

时间:2018-05-24 09:47:02

标签: python tkinter

我有一个列表框,里面有大约30个条目。但是,我无法弄清楚如何从代码中的列表框中选择多行。是否有像listbox.select(4,5,14)这样的方法可以让我这样做?

1 个答案:

答案 0 :(得分:2)

请尝试以下方法: -

android {
    compileSdkVersion 27  
    defaultConfig {
        applicationId "com.example.yeshveer.mygraphics"
        minSdkVersion 21
        targetSdkVersion 26
        versionCode 1
        versionName "1.0"}

或者您可以尝试: -

#Here list_of_indexes_to_be_selected contains the indexes of items to be selected

for index in list_of_indexes_to_be_selected:
    listbox.select_set(index)

两者都在运作

注意: - 您需要确保在创建列表框对象时传递selectmode ='multiple'。