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

FluTableView左侧的序号没有办法隐藏或者调整到表格内部展示吗,或者给这列添加一个表头文字 ![image](https://github.com/zhuzichu520/FluentUI/assets/95134508/be0f9eb7-5dbb-44bb-ab5f-600eecd43398)

![image](https://github.com/zhuzichu520/FluentUI/assets/83863749/09de9614-86c3-4aac-a9d1-2b3d679c05fa)

环境是qt6,CMakeList如下 cmake_minimum_required(VERSION 3.20) project(FluentUI VERSION 0.1 LANGUAGES CXX) set(FLUENTUI_DIRECTORY ${CMAKE_CURRENT_LIST_DIR}) list(APPEND CMAKE_MODULE_PATH ${FLUENTUI_DIRECTORY}/.cmake/) include(GetGitRevisionDescription) option(FLUENTUI_BUILD_EXAMPLES "Build FluentUI demo applications." ON) option(FLUENTUI_BUILD_FRAMELESSHEPLER "Build FramelessHelper." ON) option(FLUENTUI_BUILD_STATIC_LIB "Build static library." OFF) set(Qt6_DIR...

你好,我编译好了你最新的插件,然后新建一个demo,在main.qml文件中引入import FluentUI 1.0,在内容中加入Component.onCompleted: { FluApp.init(app) FluApp.vsync = SettingsHelper.getVsync() FluTheme.darkMode = SettingsHelper.getDarkMode() FluTheme.enableAnimation = true FluApp.routes = { "/":"qrc:/example/qml/window/MainWindow.qml", "/about":"qrc:/example/qml/window/AboutWindow.qml", "/login":"qrc:/example/qml/window/LoginWindow.qml", "/hotload":"qrc:/example/qml/window/HotloadWindow.qml", "/singleTaskWindow":"qrc:/example/qml/window/SingleTaskWindow.qml", "/standardWindow":"qrc:/example/qml/window/StandardWindow.qml", "/singleInstanceWindow":"qrc:/example/qml/window/SingleInstanceWindow.qml", "/pageWindow":"qrc:/example/qml/window/PageWindow.qml" } FluApp.initialRoute = "/" FluApp.httpInterceptor...

大神,git下载下来以后,编译会出现这个问题。怎么解决? ![image](https://github.com/zhuzichu520/FluentUI/assets/10969463/f4094088-137c-49c3-902a-f79f921f5d3e)

![image](https://github.com/zhuzichu520/FluentUI/assets/60976594/316a67d7-e08d-47f9-9406-c1b14bca1cbd) ` FluButton{ text:"手动关闭的InfoBar2" onClicked: { showInfo("这是一个Info样式的InfoBar",0) } } ` 如果这么调用,显示就是上面的图那样,建议调整一下 FluInfoBar 208 行 ,y=-5 , x不用赋值 107行width 直接等于rowlayout.width + 30 ? 大佬可以再看下 另外,希望FluTableView可以增加图片显示的功能,我目前是通过增加再FluTableView中增加一个 ` Component{ id:com_image Image { id:item_image...

是否添加timeline组件,谢谢

使用FluProgressBar,报以下错误,使用FluButton可以正常使用 ![image](https://github.com/zhuzichu520/FluentUI/assets/88643010/eb8a3b25-aeea-486e-a594-620998f67bb7)

Hi, Zichu , i follow your steps to setup demo project (qmake), meet this problem. But I can run your FluentUI example in local. https://github.com/zhuzichu520/FluentUI/wiki/%E6%96%B0%E6%89%8B%E5%85%A5%E9%97%A8%EF%BC%881.2.7%E4%BB%A5%E5%8F%8A%E4%B9%8B%E5%89%8D%E7%89%88%E6%9C%AC%EF%BC%89 Do we need another step...