Click here to Skip to main content
16,004,991 members
Home / Discussions / C#
   

C#

 
AnswerRe: Style Builder Editor Pin
Stefan Troschuetz7-Feb-07 5:37
Stefan Troschuetz7-Feb-07 5:37 
GeneralRe: Style Builder Editor Pin
Christopher Stratmann7-Feb-07 5:39
Christopher Stratmann7-Feb-07 5:39 
GeneralRe: Style Builder Editor Pin
Stefan Troschuetz7-Feb-07 6:14
Stefan Troschuetz7-Feb-07 6:14 
QuestionVS2005 Addin Pin
topcatalpha7-Feb-07 5:07
topcatalpha7-Feb-07 5:07 
AnswerRe: VS2005 Addin Pin
topcatalpha13-Feb-07 4:51
topcatalpha13-Feb-07 4:51 
AnswerRe: VS2005 Addin Pin
topcatalpha13-Feb-07 23:00
topcatalpha13-Feb-07 23:00 
QuestionQuestion about Filling Semi curved shapes Pin
ThetaClear7-Feb-07 4:45
ThetaClear7-Feb-07 4:45 
AnswerRe: Question about Filling Semi curved shapes Pin
Luc Pattyn7-Feb-07 6:25
sitebuilderLuc Pattyn7-Feb-07 6:25 
GraphicsPath.CloseFigure() did it for me.

Example (rounded rect):
GraphicsPath path=new System.Drawing.Drawing2D.GraphicsPath();
// top left arc
path.AddArc(arc, 180, 90);
// top right arc
arc.X=baseRect.Right-diameter;
path.AddArc(arc, 270, 90);
// bottom right arc
arc.Y=baseRect.Bottom-diameter;
path.AddArc(arc, 0, 90);
// bottom left arc
arc.X=baseRect.Left;
path.AddArc(arc, 90, 90);
path.CloseFigure();

and now you can do Graphics.DrawPath or FillPath.

Smile | :)

Luc Pattyn

GeneralRe: Question about Filling Semi curved shapes Pin
ThetaClear7-Feb-07 22:39
ThetaClear7-Feb-07 22:39 
QuestionRemoting problem using multiple clients Pin
Praveen Raghuvanshi7-Feb-07 4:10
professionalPraveen Raghuvanshi7-Feb-07 4:10 
AnswerRe: Remoting problem using multiple clients Pin
led mike7-Feb-07 6:19
led mike7-Feb-07 6:19 
QuestionProblem with ReadLine method! Help wanted! Pin
vitaco7-Feb-07 4:06
vitaco7-Feb-07 4:06 
AnswerRe: Problem with ReadLine method! Help wanted! Pin
m@u7-Feb-07 4:32
m@u7-Feb-07 4:32 
GeneralRe: Problem with ReadLine method! Help wanted! Pin
vitaco7-Feb-07 18:38
vitaco7-Feb-07 18:38 
GeneralRe: Problem with ReadLine method! Help wanted! Pin
m@u7-Feb-07 20:44
m@u7-Feb-07 20:44 
GeneralRe: Problem with ReadLine method! Help wanted! Pin
vitaco7-Feb-07 21:12
vitaco7-Feb-07 21:12 
QuestionQueue performance Pin
Bekjong7-Feb-07 2:48
Bekjong7-Feb-07 2:48 
AnswerRe: Queue performance Pin
Marc Clifton7-Feb-07 3:29
mvaMarc Clifton7-Feb-07 3:29 
GeneralRe: Queue performance Pin
Bekjong7-Feb-07 3:34
Bekjong7-Feb-07 3:34 
AnswerRe: Queue performance Pin
Guffa7-Feb-07 3:31
Guffa7-Feb-07 3:31 
GeneralRe: Queue performance Pin
Bekjong7-Feb-07 3:40
Bekjong7-Feb-07 3:40 
GeneralRe: Queue performance Pin
Guffa7-Feb-07 6:17
Guffa7-Feb-07 6:17 
GeneralRe: Queue performance Pin
Luc Pattyn7-Feb-07 6:39
sitebuilderLuc Pattyn7-Feb-07 6:39 
GeneralRe: Queue performance Pin
Not Active7-Feb-07 7:04
mentorNot Active7-Feb-07 7:04 
GeneralRe: Queue performance Pin
Bekjong7-Feb-07 22:37
Bekjong7-Feb-07 22:37 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.