Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
O

opinas

@opinas
About
Posts
1
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Graphics.FillPath( Brush, GraphicsPath ) does not fill a simple P
    O opinas

    using System; Dịch vụ cho thuê văn phòng giá rẻ tại Hà Nội[^]
    using System.Collections.Generic;
    using System.ComponentModel;
    using System.Data;
    using System.Drawing;
    using System.Linq;
    using System.Text;
    using System.Windows.Forms;
    using System.Drawing.Drawing2D;

    namespace FillTriangle
    {
    public partial class Form1 : Form
    {
    public Form1()
    {
    InitializeComponent();
    }

        private void Form1\_Paint(object sender, PaintEventArgs e)
        {
            Graphics g = e.Graphics;
            
            GraphicsPath gp = new GraphicsPath(FillMode.Winding);
            
            gp.AddLine(new PointF(290, 170),new PointF(98, 128));
    
            gp.AddLine(new PointF(110, 170), new PointF(290, 170));
    
            gp.AddLine(new PointF(110, 170), new PointF(98, 128));
    
            g.FillPath(new SolidBrush(Color.Red), gp);
        }
    }
    

    }

    Graphics graphics csharp linq com
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups