C#实现仪表盘

2024-08-30 20:12
文章标签 c# 实现 仪表盘 .net netcore

本文主要是介绍C#实现仪表盘,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

1、仪表盘控件

using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using System.Windows.Forms;namespace DashboardApp
{[ToolboxBitmapAttribute(typeof(Dashboard), "Dashboard.bmp"),DefaultEvent("ValueInRangeChanged"),Description("Displays a value on an analog gauge. Raises an event if the value enters one of the definable ranges.")]public class Dashboard:Control{public Dashboard(){SetStyle(ControlStyles.OptimizedDoubleBuffer, true);}#region enum, var, delegate, eventpublic enum NeedleColorEnum{Gray = 0,Red = 1,Green = 2,Blue = 3,Yellow = 4,Violet = 5,Magenta = 6};private const Byte ZERO = 0;private const Byte NUMOFCAPS = 5;private const Byte NUMOFRANGES = 5;private Single fontBoundY1;private Single fontBoundY2;private Bitmap gaugeBitmap;private Boolean drawGaugeBackground = true;private Single m_value;private Boolean[] m_valueIsInRange = { false, false, false, false, false };private Byte m_CapIdx = 1;private Color[] m_CapColor = { Color.Black, Color.Black, Color.Black, Color.Black, Color.Black };private String[] m_CapText = { "", "", "", "", "" };private Point[] m_CapPosition = { new Point(10, 10), new Point(10, 10), new Point(10, 10), new Point(10, 10), new Point(10, 10) };private Point m_Center = new Point(100, 100);private Single m_MinValue = -100;private Single m_MaxValue = 400;private Color m_BaseArcColor = Color.Gray;private Int32 m_BaseArcRadius = 80;private Int32 m_BaseArcStart = 135;private Int32 m_BaseArcSweep = 270;private Int32 m_BaseArcWidth = 2;private Color m_ScaleLinesInterColor = Color.Black;private Int32 m_ScaleLinesInterInnerRadius = 73;private Int32 m_ScaleLinesInterOuterRadius = 80;private Int32 m_ScaleLinesInterWidth = 1;private Int32 m_ScaleLinesMinorNumOf = 9;private Color m_ScaleLinesMinorColor = Color.Gray;private Int32 m_ScaleLinesMinorInnerRadius = 75;private Int32 m_ScaleLinesMinorOuterRadius = 80;private Int32 m_ScaleLinesMinorWidth = 1;private Single m_ScaleLinesMajorStepValue = 50.0f;private Color m_ScaleLinesMajorColor = Color.Black;private Int32 m_ScaleLinesMajorInnerRadius = 70;private Int32 m_ScaleLinesMajorOuterRadius = 80;private Int32 m_ScaleLinesMajorWidth = 2;private Byte m_RangeIdx;private Boolean[] m_RangeEnabled = { true, true, false, false, false };private Color[] m_RangeColor = { Color.LightGreen, Color.Red, Color.FromKnownColor(KnownColor.Control), Color.FromKnownColor(KnownColor.Control), Color.FromKnownColor(KnownColor.Control) };private Single[] m_RangeStartValue = { -100.0f, 300.0f, 0.0f, 0.0f, 0.0f };private Single[] m_RangeEndValue = { 300.0f, 400.0f, 0.0f, 0.0f, 0.0f };private Int32[] m_RangeInnerRadius = { 70, 70, 70, 70, 70 };private Int32[] m_RangeOuterRadius = { 80, 80, 80, 80, 80 };private Int32 m_ScaleNumbersRadius = 95;private Color m_ScaleNumbersColor = Color.Black;private String m_ScaleNumbersFormat;private Int32 m_ScaleNumbersStartScaleLine;private Int32 m_ScaleNumbersStepScaleLines = 1;private Int32 m_ScaleNumbersRotation = 0;private Int32 m_NeedleType = 0;private Int32 m_NeedleRadius = 80;private NeedleColorEnum m_NeedleColor1 = NeedleColorEnum.Gray;private Color m_NeedleColor2 = Color.DimGray;private Int32 m_NeedleWidth = 2;public class ValueInRangeChangedEventArgs : EventArgs{public Int32 valueInRange;public ValueInRangeChangedEventArgs(Int32 valueInRange){this.valueInRange = valueInRange;}}public delegate void ValueInRangeChangedDelegate(Object sender, ValueInRangeChangedEventArgs e);[Description("This event is raised if the value falls into a defined range.")]public event ValueInRangeChangedDelegate ValueInRangeChanged;#endregion#region hidden , overridden inherited propertiespublic new Boolean AllowDrop{get{return false;}set{}}public new Boolean AutoSize{get{return false;}set{}}public new Boolean ForeColor{get{return false;}set{}}public new Boolean ImeMode{get{return false;}set{}}public override System.Drawing.Color BackColor{get{return base.BackColor;}set{base.BackColor = value;drawGaugeBackground = true;Refresh();}}public override System.Drawing.Font Font{get{return base.Font;}set{base.Font = value;drawGaugeBackground = true;Refresh();}}public override System.Windows.Forms.ImageLayout BackgroundImageLayout{get{return base.BackgroundImageLayout;}set{base.BackgroundImageLayout = value;drawGaugeBackground = true;Refresh();}}#endregion#region properties[System.ComponentModel.Browsable(true),System.ComponentModel.Category("AGauge"),System.ComponentModel.Description("The value.")]public Single Value{get{return m_value;}set{if (m_value != value){m_value = Math.Min(Math.Max(value, m_MinValue), m_MaxValue);if (this.DesignMode){drawGaugeBackground = true;}for (Int32 counter = 0; counter < NUMOFRANGES - 1; counter++){if ((m_RangeStartValue[counter] <= m_value)&& (m_value <= m_RangeEndValue[counter])&& (m_RangeEnabled[counter])){if (!m_valueIsInRange[counter]){if (ValueInRangeChanged != null){ValueInRangeChanged(this, new ValueInRangeChangedEventArgs(counter));}}}else{m_valueIsInRange[counter] = false;}}Refresh();}}}[System.ComponentModel.Browsable(true),System.ComponentModel.Category("AGauge"),System.ComponentModel.RefreshProperties(RefreshProperties.All),System.ComponentModel.Description("The caption index. set this to a value of 0 up to 4 to change the corresponding caption's properties.")]public Byte Cap_Idx{get{return m_CapIdx;}set{if ((m_CapIdx != value)&& (0 <= value)&& (value < 5)){m_CapIdx = value;}}}[System.ComponentModel.Browsable(true),System.ComponentModel.Category("AGauge"),System.ComponentModel.Description("The color of the caption text.")]private Color CapColor{get{return m_CapColor[m_CapIdx];}set{if (m_CapColor[m_CapIdx] != value){m_CapColor[m_CapIdx] = value;CapColors = m_CapColor;drawGaugeBackground = true;Refresh();}}}[System.ComponentModel.Browsable(false)]public Color[] CapColors{get{return m_CapColor;}set{m_CapColor = value;}}[System.ComponentModel.Browsable(true),System.ComponentModel.Category("AGauge"),System.ComponentModel.Description("The text of the caption.")]public String CapText{get{return m_CapText[m_CapIdx];}set{if (m_CapText[m_CapIdx] != value){m_CapText[m_CapIdx] = value;CapsText = m_CapText;drawGaugeBackground = true;Refresh();}}}[System.ComponentModel.Browsable(false)]public String[] CapsText{get{return m_CapText;}set{for (Int32 counter = 0; counter < 5; counter++){m_CapText[counter] = value[counter];}}}[System.ComponentModel.Browsable(true),System.ComponentModel.Category("AGauge"),System.ComponentModel.Description("The position of the caption.")]public Point CapPosition{get{return m_CapPosition[m_CapIdx];}set{if (m_CapPosition[m_CapIdx] != value){m_CapPosition[m_CapIdx] = value;CapsPosition = m_CapPosition;drawGaugeBackground = true;Refresh();}}}[System.ComponentModel.Browsable(false)]public Point[] CapsPosition{get{return m_CapPosition;}set{m_CapPosition = value;}}[System.ComponentModel.Browsable(true),System.ComponentModel.Category("AGauge"),System.ComponentModel.Description("The center of the gauge (in the control's client area).")]public Point Center{get{return m_Center;}set{if (m_Center != value){m_Center = value;drawGaugeBackground = true;Refresh();}}}[System.ComponentModel.Browsable(true),System.ComponentModel.Category("AGauge"),System.ComponentModel.Description("The minimum value to show on the scale.")]public Single MinValue{get{return m_MinValue;}set{if ((m_MinValue != value)&& (value < m_MaxValue)){m_MinValue = value;drawGaugeBackground = true;Refresh();}}}[System.ComponentModel.Browsable(true),System.ComponentModel.Category("AGauge"),System.ComponentModel.Description("The maximum value to show on the scale.")]public Single MaxValue{get{return m_MaxValue;}set{if ((m_MaxValue != value)&& (value > m_MinValue)){m_MaxValue = value;drawGaugeBackground = true;Refresh();}}}[System.ComponentModel.Browsable

这篇关于C#实现仪表盘的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/1121817

相关文章

基于C++的UDP网络通信系统设计与实现详解

《基于C++的UDP网络通信系统设计与实现详解》在网络编程领域,UDP作为一种无连接的传输层协议,以其高效、低延迟的特性在实时性要求高的应用场景中占据重要地位,下面我们就来看看如何从零开始构建一个完整... 目录前言一、UDP服务器UdpServer.hpp1.1 基本框架设计1.2 初始化函数Init详解

Java中Map的五种遍历方式实现与对比

《Java中Map的五种遍历方式实现与对比》其实Map遍历藏着多种玩法,有的优雅简洁,有的性能拉满,今天咱们盘一盘这些进阶偏基础的遍历方式,告别重复又臃肿的代码,感兴趣的小伙伴可以了解下... 目录一、先搞懂:Map遍历的核心目标二、几种遍历方式的对比1. 传统EntrySet遍历(最通用)2. Lambd

springboot+redis实现订单过期(超时取消)功能的方法详解

《springboot+redis实现订单过期(超时取消)功能的方法详解》在SpringBoot中使用Redis实现订单过期(超时取消)功能,有多种成熟方案,本文为大家整理了几个详细方法,文中的示例代... 目录一、Redis键过期回调方案(推荐)1. 配置Redis监听器2. 监听键过期事件3. Redi

C#中checked关键字的使用小结

《C#中checked关键字的使用小结》本文主要介绍了C#中checked关键字的使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学... 目录✅ 为什么需要checked? 问题:整数溢出是“静默China编程”的(默认)checked的三种用

SpringBoot全局异常拦截与自定义错误页面实现过程解读

《SpringBoot全局异常拦截与自定义错误页面实现过程解读》本文介绍了SpringBoot中全局异常拦截与自定义错误页面的实现方法,包括异常的分类、SpringBoot默认异常处理机制、全局异常拦... 目录一、引言二、Spring Boot异常处理基础2.1 异常的分类2.2 Spring Boot默

C#中预处理器指令的使用小结

《C#中预处理器指令的使用小结》本文主要介绍了C#中预处理器指令的使用,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来一起学习学习吧... 目录 第 1 名:#if/#else/#elif/#endif✅用途:条件编译(绝对最常用!) 典型场景: 示例

基于SpringBoot实现分布式锁的三种方法

《基于SpringBoot实现分布式锁的三种方法》这篇文章主要为大家详细介绍了基于SpringBoot实现分布式锁的三种方法,文中的示例代码讲解详细,感兴趣的小伙伴可以跟随小编一起学习一下... 目录一、基于Redis原生命令实现分布式锁1. 基础版Redis分布式锁2. 可重入锁实现二、使用Redisso

SpringBoo WebFlux+MongoDB实现非阻塞API过程

《SpringBooWebFlux+MongoDB实现非阻塞API过程》本文介绍了如何使用SpringBootWebFlux和MongoDB实现非阻塞API,通过响应式编程提高系统的吞吐量和响应性能... 目录一、引言二、响应式编程基础2.1 响应式编程概念2.2 响应式编程的优势2.3 响应式编程相关技术

C#实现将XML数据自动化地写入Excel文件

《C#实现将XML数据自动化地写入Excel文件》在现代企业级应用中,数据处理与报表生成是核心环节,本文将深入探讨如何利用C#和一款优秀的库,将XML数据自动化地写入Excel文件,有需要的小伙伴可以... 目录理解XML数据结构与Excel的对应关系引入高效工具:使用Spire.XLS for .NETC

Nginx更新SSL证书的实现步骤

《Nginx更新SSL证书的实现步骤》本文主要介绍了Nginx更新SSL证书的实现步骤,包括下载新证书、备份旧证书、配置新证书、验证配置及遇到问题时的解决方法,感兴趣的了解一下... 目录1 下载最新的SSL证书文件2 备份旧的SSL证书文件3 配置新证书4 验证配置5 遇到的http://www.cppc