资源简介
C# 先检测出指定磁盘的容量,然后根据已使用情况动态生成圆饼图表,就像Windows磁盘属性内的图表一样,直观简洁。你知道用C#如何生成类似图表吗?你会从本示例程序中得到答案。
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.ComponentModel;
using System.Data;
using System.Drawing;
using System.Linq;
using System.Text;
using System.Windows.Forms;
//download by http://www.codefans.net
using System.Management;
using System.IO;
namespace Case09_7
{
public partial class Form1 : Form
{
public Form1()
{
InitializeComponent();
}
private void Form1_Load(object sender EventArgs e)
{
SelectQuery selectQuery = new SelectQuery(“select * from win32_logicaldisk“);
ManagementobjectSearcher searcher = new ManagementobjectSearcher(selectQuery);
foreach (Managementobject disk in searcher.Get())
{
comboBox1.Items.Add(disk[“Name“].ToString());
}
}
private void button1_Click(object sender EventArgs e)
{
DriveInfo dinfo = new DriveInfo(comboBox1.Text);
float tsize = dinfo.TotalSize;
float fsize = dinfo.TotalFreeSpace;
Graphics graphics = this.CreateGraphics();
graphics.Clear(Color.White);
Pen pen1 = new Pen(Color.Red);
Brush brush1 = new SolidBrush(Color.WhiteSmoke);
Brush brush2 = new SolidBrush(Color.Red );
Brush brush3 = new SolidBrush(Color.SteelBlue );
Font font1 = new Font(“Courier New“ 16 Fontstyle.Bold);
Font font2 = new Font(“宋体“ 9);
graphics.DrawString(“磁盘容量分析“ font1 brush2 new Point(60 50));
float angle1 = Convert.ToSingle((360 * (Convert.ToSingle(fsize / 100000000000) / Convert.ToSingle(tsize / 100000000000))));
float angle2 = Convert.ToSingle((360 * (Convert.ToSingle((tsize - fsize) / 100000000000) / Convert.ToSingle(tsize / 100000000000))));
graphics.FillPie(brush2 60 80 150 150 0 angle1);
graphics.FillPie(brush3 60 80 150 150 angle1 angle2);
graphics.DrawRectangle(pen1 30 235 200 50);
graphics.FillRectangle(brush2 35 245 20 10);
graphics.DrawString(“磁盘剩余容量:“ + dinfo.TotalFreeSpace / 1000 + “KB“ font2 brush2 55 245);
graphics.FillRectangle(brush3 35 265 20 10);
graphics.DrawString(“磁盘已用容量:“ + (dinfo.TotalSize - dinfo.TotalFreeSpace) / 1000 + “KB“ font2 brush3 55 265);
}
private void button2_Click(object sender EventArgs e)
{
this.Close();
Application.Exit(); //退出程序
}
}
}
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
----------- --------- ---------- ----- ----
44110 16
- 上一篇:LL1 语法分析器 C#
- 下一篇:c# 上位机 数据波形显示 程序
相关资源
- C# 调用win32 api函数-user32.dll详细说明
- C# 调用BarTender打印条码DEMO
- 大型比赛竞赛抽签系统 可打印 c# vs
- C#编写的Gerber查看器
- lua C# .Net4.0 vs2010 LuaInterface
- C#十六进制编辑器
- 明华URF-35H读卡器 C#读写源码 为大家
- C#文件流读取CSV文件
- c#读写PDF文件sql
- C# winform Socket大文件传输
- c#车牌识别系统附30张测试图片
- 《C#面向对象程序设计》源代码(CS)
- 金旭亮《C#面向对象程序设计》教案
- 试题库管理系统毕业论文(C#)源程序
- 学校网站原代码(C#.NET)
- C#-数据库操作技术-员工管理系统
- c#web开发入门经典
- C#与Matlab混合编程的几种方式
- c# 开发与 mysql数据库实现的增删改查
- C#异步操作 异步查询数据库 异步处理
- Basler相机通过IO触发源码
- [源代码] 《领域驱动设计 (C# 2008 实
- 松下PLC与C#通讯串口调试入门教程.z
- USB 继电器控制器 LCUS-1 保证能用 c#
- C# AES加密解密小工具
- C#圆形按钮,非常漂亮动态~~
- [精]C#仿QQ右下角弹出提示框()
- C#进程间通信-共享内存代码
- 有史以来最简单的三层(C#)
- vb调用c#编写的串口DLL文件(vb源码
评论
共有 条评论