только что создал учетную запись, я просто хочу спросить, как я могу перенести все строки данных древовидной структуры в другое древовидное представление? Я сделал функцию для вставки данных в древовидную структуру, и я хочу передать эти данные в другом древовидномеще одну функцию, мне удалось перенести первый ряд, но мне трудно это сделать, любая помощь очень ценится.извините за плохой английский.
вот мое основное древовидное представление:
cartTreeView = ttk.Treeview( posWindowCanvas )
cartTreeView[ "show" ] = "headings"
cartTreeView[ "columns" ] = ( "Sales ID", "Product Code", "Name", "Price", "Quantity", "Total" )
cartTreeView.heading( "Sales ID", text = "Sales ID", anchor = W )
cartTreeView.heading( "Product Code", text = "Product Code", anchor = W )
cartTreeView.heading( "Name", text = "Name", anchor = W )
cartTreeView.heading( "Price", text = "Price", anchor = W )
cartTreeView.heading( "Quantity", text = "Quantity", anchor = W )
cartTreeView.heading( "Total", text = "Total", anchor = W )
, а вот функция, которая добавляет данные в древовидную структуру:
def addNow():
getTreeValue = productsTreeView.focus()
selected = productsTreeView.item( getTreeValue )
total = float( selected["values"][2] ) * productQuantity.get()
roundedUp = round( total, 2 )
cartTreeView.insert( "", "end" , text = "", values = ( "000", str(selected["values"][0]), selected["values"][1], selected["values"][2], productQuantity.get(), roundedUp ) )
и вотфункция, которая создает другое древовидное представление, и именно здесь я хочу, чтобы отображались данные из основного древовидного представления.
def transactNow():
transactNowWindow = Toplevel()
transactNowWindow.title( "Transaction Window" )
transactNowWindow.geometry( "725x290" )
transactNowWindow.resizable( height = False, width = False )
transactNowWindowCanvas = Canvas( transactNowWindow, height = 550, width = 280, bg = "gray84" )
transactNowWindowCanvas.pack( fill = BOTH )
cartTreeView2 = ttk.Treeview( transactNowWindowCanvas )
cartTreeView2[ "show" ] = "headings"
cartTreeView2[ "columns" ] = ( "Sales ID", "Product Code", "Name", "Price", "Quantity", "Total" )
cartTreeView2.heading( "Sales ID", text = "Sales ID", anchor = W )
cartTreeView2.heading( "Product Code", text = "Product Code", anchor = W )
cartTreeView2.heading( "Name", text = "Name", anchor = W )
cartTreeView2.heading( "Price", text = "Price", anchor = W )
cartTreeView2.heading( "Quantity", text = "Quantity", anchor = W )
cartTreeView2.heading( "Total", text = "Total", anchor = W )
cartTreeView2.column( "Sales ID", minwidth = 0, width = 55, stretch = NO )
cartTreeView2.column( "Product Code", minwidth = 0, width = 90, stretch = NO )
cartTreeView2.column( "Name", minwidth = 0, width = 325, stretch = NO )
cartTreeView2.column( "Price", minwidth = 0, width = 80, stretch = NO )
cartTreeView2.column( "Quantity", minwidth = 0, width = 55, stretch = NO )
cartTreeView2.column( "Total", minwidth = 0, width = 80, stretch = NO )
cartTreeView2.place( x = 10, y = 10 )
cartTreeViewScrollBar = ttk.Scrollbar( transactNowWindowCanvas, orient = "vertical", command = cartTreeView2.yview )
cartTreeViewScrollBar.place( x = 698, y = 10, height = 227 )
cartTreeView2.configure( yscrollcommand = cartTreeViewScrollBar.set )
for child in cartTreeView.get_children():
cartList.append( cartTreeView.item( child )["values"] )
cartTreeView2.insert( "", "end", text = "", values = ( cartList[0][0], cartList[0][1], cartList[0][2], cartList[0][3], cartList[0][4], cartList[0][5] ) )
Моя проблема в том, что я могу просто вставить одну строку.но я хочу вставить все строки в другое древовидное представление.
for child in cartTreeView.get_children():
cartList.append( cartTreeView.item( child )["values"] )
cartTreeView2.insert( "", "end", text = "", values = ( cartList[0][0], cartList[0][1], cartList[0][2], cartList[0][3], cartList[0][4], cartList[0][5] ) )