FluentUI icon indicating copy to clipboard operation
FluentUI copied to clipboard

FluentUI for QML

Results 100 FluentUI issues
Sort by recently updated
recently updated
newest added

如何获取选中行的下标索引,或者说右键如何获取选中行的数据

when i try to migrate existing code or write new code, for example SplitView->FluSplitLayout, i need a document about what FluSplitLayout exactly is and can do. There should be a...

SingleTask窗口里放了表格,定时添加数据。 原本都放在主窗口里,很卡,没想到放其他窗口,主界面也会卡。 不同窗口应该是不同线程运行的吧

![image](https://github.com/zhuzichu520/FluentUI/assets/25459930/bc385871-12f2-454f-a299-24763a24fa08) 有没有办法将左上角的返回键给隐藏掉做一个类似于 微信头像的样子 ![image](https://github.com/zhuzichu520/FluentUI/assets/25459930/69717e60-cda1-4136-8684-9dbe14f51345) 我本来是考虑用Logo属性的 但是有点小 ![image](https://github.com/zhuzichu520/FluentUI/assets/25459930/2a7114a2-d580-413b-8c66-0b49e9758834) 最好是能在侧边栏上加一个

可以参考WinUI3 Gallery -> Styles -> System Backdrops ![image](https://github.com/zhuzichu520/FluentUI/assets/68151170/c45e4e63-c391-4694-a608-a8d78abb99cc)

你好,作者 linux deepin (V23beta3)下编译不通过 src/libfluentuiplugin.so]Error1 使用QT5.15.10 Qt Creator 12.0.1 ![image](https://github.com/zhuzichu520/FluentUI/assets/11317413/c42e1ea1-f9f8-4a68-8014-052a50a63715) ctrl+R编译出现如下错误: ![截图_选择区域_20240129200704](https://github.com/zhuzichu520/FluentUI/assets/11317413/92b02b3e-21d7-43b5-a8f5-2fff926d9491) ``` 20:00:52: 为项目FluentUI执行步骤 ... 20:00:52: 正在启动 "/usr/bin/cmake" --build /home/ttr/Documents/qtpro/FluentUI-main/build-FluentUI-main-unknown-Debug --target all [ 2%] Automatic MOC and UIC for...

我的主窗口是传统的QWidget类型,然后通过C++启动一个FluWindow子窗口,我必须先实例化一个FluWindow资源,然后才能将后台数据更新到控件里,但是实例化后会显示这个窗口,但是我的数据是异步的还没有完全准备好,我并不想让他立刻显示出来,可能会出现先有窗体再有数据的情况,我希望数据都全部更新完毕后显示窗体。 我自己的qml引用了FluWindow,在里面设置visble: false没有效果,但是删除FluWindow.qml里onCompleted里的window.show()函数可以满足我的需求,请问是否有不修改源码的方案?或者说FluWindow是否可以默认不显示窗体?

![Snipaste_2023-12-21_14-25-49](https://github.com/zhuzichu520/FluentUI/assets/69187939/108e0fc7-3fdb-4362-9555-0fb7bc8dc3f8) 添加这个就报错

博主可以出一个应用的讲解视频吗?

系统中同时有Qt5和Qt6的库存在时报错 将 `CMakeLists.txt` 中 ```cmake find_package(QT NAMES Qt6 Qt5 REQUIRED COMPONENTS Core) ``` 改为 ```cmake find_package(QT NAMES Qt6 REQUIRED COMPONENTS Core) ``` 重新编译后运行正常 希望能通过某些方式设置CMake选择的Qt版本