您当前的位置: 首页 >  c#

彭世瑜

暂无认证

  • 1浏览

    0关注

    2791博文

    0收益

  • 0浏览

    0点赞

    0打赏

    0留言

私信
关注
热门博文

C#编程-135:Graphics绘制三维饼状图_彭世瑜_新浪博客

彭世瑜 发布时间:2017-08-20 16:29:13 ,浏览量:1

C#编程-135:Graphics绘制三维饼状图
  1. using System;
  2. using System.Collections.Generic;
  3. using System.ComponentModel;
  4. using System.Data;
  5. using System.Drawing;
  6. using System.Linq;
  7. using System.Text;
  8. using System.Windows.Forms;
  9.  
  10. namespace Draw3DPie
  11. {
  12.     public partial class Form1 : Form
  13.     {
  14.         public Form1()
  15.         {
  16.             InitializeComponent();
  17.         }
  18.         int width = 200;
  19.         int height = 100;
  20.         int x = 50;
  21.         int y = 20;
  22.         private void Form1_Paint(object sender, PaintEventArgs e)
  23.         {
  24.             Graphics g = e.Graphics;
  25.             Pen pen = new Pen(Color.Gray);
  26.             Rectangle rect = new Rectangle(x, y, width, height);
  27.              
  28.             //绘制椭圆柱体
  29.             for (int i = y; i 
关注
打赏
1665367115
查看更多评论
立即登录/注册

微信扫码登录

0.1630s