qt 自定义控件仪表盘(qwidget实现)
2022-07-01 18:05:54 1.49MB qt
1
自定义View之仿支付宝芝麻信用分仪表盘效果,喜欢的话,请给个star,谢谢.使用添加项目依赖Add it in your root build.gradle at the end of repositories: allprojects {         repositories { ... maven { url "https://jitpack.io" }         }     } Add the dependency     dependencies {             compile 'com.github.HotBitmapGG:CreditSesameRingView:V1.0.2' }新版芝麻信用分使用     // The gradient color can define your own private final int[] mColors = new int[]{             0xFFFF80AB,             0xFFFF4081,             0xFFFF5177,             0xFFFF7997              }; // Set up the need to score mLayout = (RelativeLayout) view.findViewById(R.id.layout);       mButton = (Button) view.findViewById(R.id.btn);       newCreditSesameView = (NewCreditSesameView) view.findViewById(R.id.sesame_view);       mLayout.setBackgroundColor(mColors[0]);       mButton.setOnClickListener(new View.OnClickListener()       { @Override public void onClick(View view)            {                newCreditSesameView.setSesameValues(639);                startColorChangeAnim();            }       }); // The background color gradient animation Simply illustrates the effect Can customize according to your need public void startColorChangeAnim()      { ObjectAnimator animator = ObjectAnimator.ofInt(mLayout, "backgroundColor", mColors);          animator.setDuration(3000);          animator.setEvaluator(new ArgbEvaluator());          animator.start();      }旧版芝麻信用分使用      // Set up the need to score oldCreditSesameView = (OldCreditSesameView) view.findViewById(R.id.sesame_view);       mButton = (Button) view.findViewById(R.id.btn);       mButton.setOnClickListener(new View.OnClickListener()       { @Override public void onClick(View view)           {               oldCreditSesameView.setSesameValues(639);           }       });
2022-06-30 14:40:09 3.83MB 开源项目
1
wpfGauge动态链接库文件,可在C#项目中添加饮用,具体步骤参考博文
2022-06-15 15:14:11 52KB wpfGauge WPF 仪表盘
1
我用C#做的一个指针表盘程序,可用作电压电流及速度、温度表盘显示,C#工具箱缺这个东西,源码编译通过,执行直接输出表盘,实例中做了一个随机函数显示如何移动指针。
2022-06-02 09:07:34 44KB C#仪表盘控件
1
Qt 实现的进度仪表盘样式,可以动态显示当前加载的进度,界面交互灵活
2022-05-21 09:07:09 8KB qt 源码软件 开发语言
1
Android自定义控件之双刻度仪表盘JAVA代码,完整工程,解包可用。开发环境:Android studio3.2 + ANDROID8.0。界面效果可去我博客查看:https://blog.csdn.net/u011266964/article/details/104839782
2022-05-18 09:38:16 3.52MB ANDROID JAVA ANDROID STUDIO
1
使用SurfaceView 去刷新仪表的指针。可以直接导入eclipse中运行。
2022-05-14 14:16:27 3.67MB SurfaceView
1
前提 入行已经7,8年了,一直想做一套漂亮点的自定义控件,于是就有了本系列文章。 GitHub:https://github.com/kwwwvagaa/NetWinformControl 码云:https://gitee.com/kwwwvagaa/net_winform_custom_control.git NuGet Install-Package HZH_Controls 目录 https://www.cnblogs.com/bfyx/p/11364884.html 用处及效果 准备工作 依然使用GDI+画的,不懂的话就百度一下吧 另外主要用到了三角函数,如果不懂,可以向初中的数
2022-05-12 14:04:28 99KB c c# fo
1
Qt自定义仪表控件,彩色仪表盘,支持刻度定制和当前值显示,多种属性设置仪表盘背景色、前景色、刻度大小,单位等。编译之后可以直接嵌入QtDesigner中使用,也可以作为单独控件在项目中使用
1
android仪表盘,展现不同的仪表,封装好,可以直接使用.zip,太多无法一一验证是否可用,程序如果跑不起来需要自调,部分代码功能进行参考学习。
2022-05-11 10:12:00 209KB 仪表盘效果
1