跳到內容

Chinese

A forum for those speaking Chinese
709 主題 1.8k 貼文
  • 欢迎大家来到Qt中文论坛

    已置頂
    86
    1 評價
    86 貼文
    164k 瀏覽
    N
    坐标上海,外企。 小伙伴有找工作的么。 精通C/C++编程,熟悉C++11/14/17新特性 熟悉Qt开发框架(QGraphicsView、QWidget、QML),了解Qt内部机制优先,如信号槽机制、事件机制、Moc,具备GUI应用独立开发经验 年以上Windows客户端开发经验,熟悉Windows窗口特性、消息循环机制、多线程、网络编程 熟练运用系统级的调试工具来发现和定位问题(如IDA/WinDbg/xperf) 至少参与一款已发布Windows客户端应用的研发,有Webview/Web开发经验更佳
  • linux下Qt create 17.0.0和Qt 6.9.1无法build windows应用

    Unsolved
    2
    0 評價
    2 貼文
    94 瀏覽
    W
    试图自己创建windows build项但失败,找不到mingw对应的Qt 6.9.1库。 还发现compiler中的mingw项目告警:ABI:不是所有编译器都设置正确,但同时告警的gcc编译的linux应用正常,不知是否有影响。 [image: 2442b188-152a-4d9a-9c6a-f14f780dfc4e.png] [image: 2e5af089-26cc-48ea-a014-1a62991ba36e.png] [image: 955e250b-4a60-4951-ae93-266395cb3817.png] [image: c0685f8c-4700-4377-a2f6-b0be23b53e6e.png]
  • 使用QQuickItem显示高分辨率图像问题

    Unsolved
    1
    0 評價
    1 貼文
    87 瀏覽
    尚無回覆
  • qt6.8.3 everywhere 交叉编译arm32

    Unsolved
    2
    0 評價
    2 貼文
    526 瀏覽
    K
    确认下你这个SOC有没有GPU, 这个报错是因为在sysroot 下没有OpenGL ES 需要的GPU驱动库文件和头文件造成的报错。
  • qt中国区代理的联系方式?

    Unsolved
    3
    0 評價
    3 貼文
    778 瀏覽
    E
    很容易找到啊, 没找到给我发消息.
  • Qt-online-installer-windows-x64-4.10.0 Unable to Connect Server

    Unsolved
    7
    0 評價
    7 貼文
    578 瀏覽
    JKSHJ
    The server is down: https://downdetector.com/status/heroku/
  • QT程序打包问题

    Unsolved
    1
    0 評價
    1 貼文
    263 瀏覽
    尚無回覆
  • QT长时间运行后定时器中更新时间日期无法生效,点击鼠标以后UI恢复更新

    Unsolved
    1
    0 評價
    1 貼文
    250 瀏覽
    尚無回覆
  • QT6.9示例Bluetooth HeartGame在VS2022中启动失败

    Unsolved
    1
    0 評價
    1 貼文
    558 瀏覽
    尚無回覆
  • QTCreator点击程序崩溃

    Unsolved
    1
    0 評價
    1 貼文
    239 瀏覽
    尚無回覆
  • QT打包

    Unsolved
    3
    0 評價
    3 貼文
    603 瀏覽
    O
    还是说你没有挪exe的位置,对exe跑完windeployqt之后就直接打不开?
  • Qt6.5.3或者更新版本是否已在android上支持usb摄像头?

    Unsolved
    3
    0 評價
    3 貼文
    831 瀏覽
    S
    兄弟,有进展了吗?
  • Qt Creator不工作

    Unsolved
    1
    0 評價
    1 貼文
    214 瀏覽
    尚無回覆
  • 此主題已被刪除!

    Unsolved
    6
    0 評價
    6 貼文
    43 瀏覽
  • 进程崩溃

    已移動 Unsolved
    1
    0 評價
    1 貼文
    241 瀏覽
    尚無回覆
  • in qt3D can not use custom QMaterial on QEntity, why?

    Unsolved
    7
    0 評價
    7 貼文
    976 瀏覽
    B
    @JoeCFD and this is debug information: 17:52:58: Starting E:\C++\test_3d\build\Desktop_Qt_6_5_3_MinGW_64_bit-Debug\debug\test_3d.exe... Qt3D.Renderer.RHI.Backend: Initializing RHI with OpenGL backend
  • qt3D中为什么使用自定义材质 QMaterial 赋给实体没有效果

    已移動 Unsolved
    2
    0 評價
    2 貼文
    406 瀏覽
    Christian EhrlicherC
    Please write in english or use the appropriate subforum. Moved to Chinese subforum
  • Qt应用程序打包

    已移動 Unsolved
    2
    0 評價
    2 貼文
    493 瀏覽
    Christian EhrlicherC
    Please write in english or us the appropriate subforum: https://forum.qt.io/category/37/chinese
  • 我已经安照同样的放法进行测试,功能正常,但是还会报出找不到库

    已移動 Unsolved
    1
    0 評價
    1 貼文
    235 瀏覽
    尚無回覆
  • 刚刚接触QT,菜单直接打开链接都某个文件

    Unsolved
    3
    0 評價
    3 貼文
    659 瀏覽
    Grit ClefG
    您试试在相应的action里头打开文件? 比如 QAction *openLocalFileAction = new QAction("打开视频1", this); connect(openLocalFileAction, &QAction::triggered, this, &Player::openLocalFile); 然后在槽中写入类似于 #include <QtMultimedia> #include <QtMultimediaWidgets> ... QMediaPlayer *player = new QMediaPlayer; player->setMedia(QMediaContent(QUrl("1.mp4"))); QVideoWidget *videoWidget = new QVideoWidget; player->setVideoOutput(videoWidget); videoWidget->show(); player->play();