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

相关文章

Nginx 配置跨域的实现及常见问题解决

《Nginx配置跨域的实现及常见问题解决》本文主要介绍了Nginx配置跨域的实现及常见问题解决,文中通过示例代码介绍的非常详细,对大家的学习或者工作具有一定的参考学习价值,需要的朋友们下面随着小编来... 目录1. 跨域1.1 同源策略1.2 跨域资源共享(CORS)2. Nginx 配置跨域的场景2.1

Python中提取文件名扩展名的多种方法实现

《Python中提取文件名扩展名的多种方法实现》在Python编程中,经常会遇到需要从文件名中提取扩展名的场景,Python提供了多种方法来实现这一功能,不同方法适用于不同的场景和需求,包括os.pa... 目录技术背景实现步骤方法一:使用os.path.splitext方法二:使用pathlib模块方法三

CSS实现元素撑满剩余空间的五种方法

《CSS实现元素撑满剩余空间的五种方法》在日常开发中,我们经常需要让某个元素占据容器的剩余空间,本文将介绍5种不同的方法来实现这个需求,并分析各种方法的优缺点,感兴趣的朋友一起看看吧... css实现元素撑满剩余空间的5种方法 在日常开发中,我们经常需要让某个元素占据容器的剩余空间。这是一个常见的布局需求

HTML5 getUserMedia API网页录音实现指南示例小结

《HTML5getUserMediaAPI网页录音实现指南示例小结》本教程将指导你如何利用这一API,结合WebAudioAPI,实现网页录音功能,从获取音频流到处理和保存录音,整个过程将逐步... 目录1. html5 getUserMedia API简介1.1 API概念与历史1.2 功能与优势1.3

Java实现删除文件中的指定内容

《Java实现删除文件中的指定内容》在日常开发中,经常需要对文本文件进行批量处理,其中,删除文件中指定内容是最常见的需求之一,下面我们就来看看如何使用java实现删除文件中的指定内容吧... 目录1. 项目背景详细介绍2. 项目需求详细介绍2.1 功能需求2.2 非功能需求3. 相关技术详细介绍3.1 Ja

使用Python和OpenCV库实现实时颜色识别系统

《使用Python和OpenCV库实现实时颜色识别系统》:本文主要介绍使用Python和OpenCV库实现的实时颜色识别系统,这个系统能够通过摄像头捕捉视频流,并在视频中指定区域内识别主要颜色(红... 目录一、引言二、系统概述三、代码解析1. 导入库2. 颜色识别函数3. 主程序循环四、HSV色彩空间详解

PostgreSQL中MVCC 机制的实现

《PostgreSQL中MVCC机制的实现》本文主要介绍了PostgreSQL中MVCC机制的实现,通过多版本数据存储、快照隔离和事务ID管理实现高并发读写,具有一定的参考价值,感兴趣的可以了解一下... 目录一 MVCC 基本原理python1.1 MVCC 核心概念1.2 与传统锁机制对比二 Postg

SpringBoot整合Flowable实现工作流的详细流程

《SpringBoot整合Flowable实现工作流的详细流程》Flowable是一个使用Java编写的轻量级业务流程引擎,Flowable流程引擎可用于部署BPMN2.0流程定义,创建这些流程定义的... 目录1、流程引擎介绍2、创建项目3、画流程图4、开发接口4.1 Java 类梳理4.2 查看流程图4

C++中零拷贝的多种实现方式

《C++中零拷贝的多种实现方式》本文主要介绍了C++中零拷贝的实现示例,旨在在减少数据在内存中的不必要复制,从而提高程序性能、降低内存使用并减少CPU消耗,零拷贝技术通过多种方式实现,下面就来了解一下... 目录一、C++中零拷贝技术的核心概念二、std::string_view 简介三、std::stri

C++高效内存池实现减少动态分配开销的解决方案

《C++高效内存池实现减少动态分配开销的解决方案》C++动态内存分配存在系统调用开销、碎片化和锁竞争等性能问题,内存池通过预分配、分块管理和缓存复用解决这些问题,下面就来了解一下... 目录一、C++内存分配的性能挑战二、内存池技术的核心原理三、主流内存池实现:TCMalloc与Jemalloc1. TCM