Qt设置windows系统时间

2020-11-26 18:23

阅读:533

标签:c   get   a   set   代码   window   

  Qt设置windows系统时间网上的回答很多,但很少有一步到位的,一般会有8小时时差,下面给出直接解决代码:

  #include "windows.h"

  void Dialog::setTime()
  {
    SYSTEMTIME st;
    GetLocalTime(&st);//关键在这里
    st.wHour=ui->spinBox->value();
    st.wMinute=ui->spinBox_2->value();
    st.wSecond=ui->spinBox_3->value();
    SetLocalTime(&st);
  }

 

Qt设置windows系统时间,搜素材,soscw.com

Qt设置windows系统时间

标签:c   get   a   set   代码   window   

原文地址:http://www.cnblogs.com/Bird-Man/p/3726241.html


评论


亲,登录后才可以留言!