2015-12-12 45 views
0

我正在QT C++中執行圖書館管理系統項目。在處理書籍挖掘時,我使用qdatetimeedit來選擇當前日期。我想通過給當前日期添加2周來指定返回日期,並且在我從彈出日曆中選擇當前日期時,應該在行編輯中顯示它。我沒有一個想法來實現這一點。請幫忙。預先感謝您如何添加另一個日期到從Qt C++中彈出日曆中選擇的日期

+0

ui-> dtetimeCurrnt-> setCalendarPopup(true); QDate current = ui-> dtetimeCurrnt-> date(); – user3279893

回答

0

經過多次嘗試,我自己想出了它。

QDate current = ui->dtetimeCurrnt->date(); 
    //adding 14 days to the current date to get the returning date 
    QDate returnDate = current.addDays(14); 

    //assigning the returndate to dateedit 
    ui->dteditRetrn->setDate(returnDate); 

因爲我不能使用lineEdit我使用了一個dateEdit。

相關問題