Click here to Skip to main content
15,895,777 members
Home / Discussions / C#
   

C#

 
QuestionSetup problem Pin
milenalukic9-Apr-11 4:56
milenalukic9-Apr-11 4:56 
AnswerRe: Setup problem Pin
Not Active9-Apr-11 6:54
mentorNot Active9-Apr-11 6:54 
GeneralRe: Setup problem Pin
Wendelius9-Apr-11 8:08
mentorWendelius9-Apr-11 8:08 
QuestionPolyGon To Shift Right Pin
Anubhava Dimri8-Apr-11 20:22
Anubhava Dimri8-Apr-11 20:22 
AnswerRe: PolyGon To Shift Right Pin
OriginalGriff8-Apr-11 20:39
mveOriginalGriff8-Apr-11 20:39 
GeneralRe: PolyGon To Shift Right Pin
Anubhava Dimri8-Apr-11 20:49
Anubhava Dimri8-Apr-11 20:49 
GeneralRe: PolyGon To Shift Right Pin
OriginalGriff8-Apr-11 21:02
mveOriginalGriff8-Apr-11 21:02 
GeneralRe: PolyGon To Shift Right Pin
Anubhava Dimri8-Apr-11 22:44
Anubhava Dimri8-Apr-11 22:44 
Hello Sir,

I am drawing Polygon and Now I want it to shift in Left Side.

In Case of Rectangle We Can Use the Rectangle.X = 0

But How to Shift Polygon.

Code For Drawing Polygon is given below :

 Point point1 = new Point(50,  50);
 Point point2 = new Point(100,  25);
 Point point3 = new Point(200,   5);
 Point point4 = new Point(250,  50);
 Point point5 = new Point(300, 100);
 Point point6 = new Point(350, 200);
 Point point7 = new Point(250, 250);

public void DrawPolygonPoint(PaintEventArgs e)
{
    // Create pen.
    Pen blackPen = new Pen(Color.Black, 3);

    // Create points that define polygon.
    Point[] curvePoints =
             {
                 point1,
                 point2,
                 point3,
                 point4,
                 point5,
                 point6,
                 point7
             };

    // Draw polygon to screen.
    e.Graphics.DrawPolygon(blackPen, curvePoints);
}

If you can think then I Can.

AnswerRe: PolyGon To Shift Right Pin
Richard MacCutchan8-Apr-11 23:22
mveRichard MacCutchan8-Apr-11 23:22 
AnswerRe: PolyGon To Shift Right Pin
OriginalGriff8-Apr-11 23:29
mveOriginalGriff8-Apr-11 23:29 
GeneralRe: PolyGon To Shift Right Pin
Anubhava Dimri8-Apr-11 23:51
Anubhava Dimri8-Apr-11 23:51 
AnswerRe: PolyGon To Shift Right Pin
OriginalGriff9-Apr-11 0:04
mveOriginalGriff9-Apr-11 0:04 
GeneralRe: PolyGon To Shift Right Pin
Anubhava Dimri9-Apr-11 0:39
Anubhava Dimri9-Apr-11 0:39 
GeneralRe: PolyGon To Shift Right Pin
dan!sh 9-Apr-11 1:03
professional dan!sh 9-Apr-11 1:03 
AnswerRe: PolyGon To Shift Right Pin
OriginalGriff9-Apr-11 1:07
mveOriginalGriff9-Apr-11 1:07 
GeneralRe: PolyGon To Shift Right Pin
Anubhava Dimri9-Apr-11 1:10
Anubhava Dimri9-Apr-11 1:10 
GeneralRe: PolyGon To Shift Right Pin
OriginalGriff9-Apr-11 1:15
mveOriginalGriff9-Apr-11 1:15 
GeneralRe: PolyGon To Shift Right Pin
Luc Pattyn9-Apr-11 5:52
sitebuilderLuc Pattyn9-Apr-11 5:52 
GeneralRe: PolyGon To Shift Right Pin
OriginalGriff9-Apr-11 5:55
mveOriginalGriff9-Apr-11 5:55 
GeneralRe: PolyGon To Shift Right Pin
Anubhava Dimri10-Apr-11 18:17
Anubhava Dimri10-Apr-11 18:17 
GeneralRe: PolyGon To Shift Right [modified] Pin
GlobX10-Apr-11 18:32
GlobX10-Apr-11 18:32 
GeneralRe: PolyGon To Shift Right Pin
David198710-Apr-11 20:26
David198710-Apr-11 20:26 
JokeRe: PolyGon To Shift Right Pin
GlobX10-Apr-11 20:31
GlobX10-Apr-11 20:31 
AnswerRe: PolyGon To Shift Right Pin
Luc Pattyn9-Apr-11 5:55
sitebuilderLuc Pattyn9-Apr-11 5:55 
GeneralRe: PolyGon To Shift Right Pin
Anubhava Dimri10-Apr-11 18:16
Anubhava Dimri10-Apr-11 18:16 

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.