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
C

c_onica

@c_onica
About
Posts
3
Topics
1
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • How Create Nonrectangular form in c#.net 2005
    C c_onica

    you can overwrite the OnPaint method: protected override void OnPaint(System.Windows.Forms.PaintEventArgs e) { System.Drawing.Drawing2D.GraphicsPath shape = new System.Drawing.Drawing2D.GraphicsPath(); Point[] points = new Point[6]; points[0] = new Point(0, 0); points[1] = new Point(this.Width, 0); points[2] = new Point((this.Width/2)+1, this.Height/2); points[3] = new Point(this.Width, this.Height); points[4] = new Point(0,this.Height); points[5] = new Point((this.Width / 2) - 1, this.Height / 2); shape.AddPolygon(points); this.Region = new System.Drawing.Region(shape); } ... and you will have a glasshour shaped form...

    C# csharp winforms graphics help

  • Trapeze-shaped form...
    C c_onica

    10x for the suggestion, but as I said, I want to know if there is a way to reshape the form, I dont want to use transparency keys or to overwrite OnPaint method

    C# question

  • Trapeze-shaped form...
    C c_onica

    Hi everybody,I'm new here and I have a question... I'd like to create a form which would simulate a perspective view, so my form will have to have a trapeze shape. I don't want to use Region(myShape) because that will clip my form and I want to have the entire form. Thanks in advance for any suggestions.

    C# question
  • Login

  • Don't have an account? Register

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