How to draw a modifiable polyline on inkcanvasHow do I enumerate an enum in C#?InkCanvas styluspoint timestampHow to synchronize two InkCanvas-es drawings?Is there a reason for C#'s reuse of the variable in a foreach?Draw the Polyline with borderGet acces to an Inkcanvas childWPF InkCanvas drawing width/height not consistent in different environmentsCan I draw a primitive shape to UWP inkcanvas?C# UWP Canvas Polyline drawing weird resultsHow to display a TextBox over a custom Stroke in an InkCanvas?

A factorization game

Endgame puzzle: How to avoid stalemate and win?

Why do these characters still seem to be the same age after the events of Endgame?

What is the closest airport to the center of the city it serves?

Are there terms in German for different skull shapes?

It is as simple as ABC

Kanji etymology of 毎?

Is 'contemporary' ambiguous and if so is there a better word?

Has the United States ever had a non-Christian President?

Is there an age requirement to play in Adventurers League?

Is the book wrong about the Nyquist Sampling Criterion?

chromatic descent on minor chord

What are the advantages of luxury car brands like Acura/Lexus over their sibling non-luxury brands Honda/Toyota?

To kill a cuckoo

How do I, as a DM, handle a party that decides to set up an ambush in a dungeon?

Feasibility of lava beings?

Why is "breaking the mould" positively connoted?

How does the reduce() method work in Java 8?

How can internet speed be 10 times slower without a router than when using the same connection with a router?

Is Benjen dead?

Is an HNN extension of a virtually torsion-free group virtually torsion-free?

Gladys unchained

What do I do if my advisor made a mistake?

Prove that a definite integral is an infinite sum



How to draw a modifiable polyline on inkcanvas


How do I enumerate an enum in C#?InkCanvas styluspoint timestampHow to synchronize two InkCanvas-es drawings?Is there a reason for C#'s reuse of the variable in a foreach?Draw the Polyline with borderGet acces to an Inkcanvas childWPF InkCanvas drawing width/height not consistent in different environmentsCan I draw a primitive shape to UWP inkcanvas?C# UWP Canvas Polyline drawing weird resultsHow to display a TextBox over a custom Stroke in an InkCanvas?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;








0















I am trying to draw a polyline on inkcanvas that works like the video below.



I would like to draw a polyline that I can add a point so that I can modify the polyline.



https://www.youtube.com/watch?v=N9yPc14eVuQ



I used a Stroke but I have to use a polyline so that I have to add a point at an arbitrary position. The following code is the most recent code.



 Polyline polyline = new Polyline();
pointCollection = new
pointCollection.Add(new Point(100, 100));
pointCollection.Add(new Point(200, 200));

polyline.Points = pointCollection;
SolidColorBrush solidColorBrush = Brushes.Black;

polyline.Stroke = solidColorBrush;
polyline.StrokeThickness = Epaisseur;

inkCanvas.Children.Add(polyline);


The result



Problem










share|improve this question






















  • Can you explain what "I used a Stroke but I have to use a polyline so that I have to add a point at an arbitrary position" means?

    – Enigmativity
    Mar 23 at 1:13











  • @Enigmativity If I use a stroke, I don't think I can add a point so that I can change the shape of the stroke. For example, le'ts say there is a point on a straight line at each endpoint like this ㅡ. I want to add a point on a polyline between two endpoints so that I can change the shape / or V. Like the video

    – ChrisLEE
    Mar 23 at 1:31






  • 1





    Are you saying that you want it interactive?

    – Enigmativity
    Mar 23 at 2:41











  • @Enigmativity That is absolutely right.

    – ChrisLEE
    Mar 23 at 2:50











  • AFAIK that's something you need to code for. It's not built-in - you have to do your own interactivity.

    – Enigmativity
    Mar 23 at 4:21

















0















I am trying to draw a polyline on inkcanvas that works like the video below.



I would like to draw a polyline that I can add a point so that I can modify the polyline.



https://www.youtube.com/watch?v=N9yPc14eVuQ



I used a Stroke but I have to use a polyline so that I have to add a point at an arbitrary position. The following code is the most recent code.



 Polyline polyline = new Polyline();
pointCollection = new
pointCollection.Add(new Point(100, 100));
pointCollection.Add(new Point(200, 200));

polyline.Points = pointCollection;
SolidColorBrush solidColorBrush = Brushes.Black;

polyline.Stroke = solidColorBrush;
polyline.StrokeThickness = Epaisseur;

inkCanvas.Children.Add(polyline);


The result



Problem










share|improve this question






















  • Can you explain what "I used a Stroke but I have to use a polyline so that I have to add a point at an arbitrary position" means?

    – Enigmativity
    Mar 23 at 1:13











  • @Enigmativity If I use a stroke, I don't think I can add a point so that I can change the shape of the stroke. For example, le'ts say there is a point on a straight line at each endpoint like this ㅡ. I want to add a point on a polyline between two endpoints so that I can change the shape / or V. Like the video

    – ChrisLEE
    Mar 23 at 1:31






  • 1





    Are you saying that you want it interactive?

    – Enigmativity
    Mar 23 at 2:41











  • @Enigmativity That is absolutely right.

    – ChrisLEE
    Mar 23 at 2:50











  • AFAIK that's something you need to code for. It's not built-in - you have to do your own interactivity.

    – Enigmativity
    Mar 23 at 4:21













0












0








0








I am trying to draw a polyline on inkcanvas that works like the video below.



I would like to draw a polyline that I can add a point so that I can modify the polyline.



https://www.youtube.com/watch?v=N9yPc14eVuQ



I used a Stroke but I have to use a polyline so that I have to add a point at an arbitrary position. The following code is the most recent code.



 Polyline polyline = new Polyline();
pointCollection = new
pointCollection.Add(new Point(100, 100));
pointCollection.Add(new Point(200, 200));

polyline.Points = pointCollection;
SolidColorBrush solidColorBrush = Brushes.Black;

polyline.Stroke = solidColorBrush;
polyline.StrokeThickness = Epaisseur;

inkCanvas.Children.Add(polyline);


The result



Problem










share|improve this question














I am trying to draw a polyline on inkcanvas that works like the video below.



I would like to draw a polyline that I can add a point so that I can modify the polyline.



https://www.youtube.com/watch?v=N9yPc14eVuQ



I used a Stroke but I have to use a polyline so that I have to add a point at an arbitrary position. The following code is the most recent code.



 Polyline polyline = new Polyline();
pointCollection = new
pointCollection.Add(new Point(100, 100));
pointCollection.Add(new Point(200, 200));

polyline.Points = pointCollection;
SolidColorBrush solidColorBrush = Brushes.Black;

polyline.Stroke = solidColorBrush;
polyline.StrokeThickness = Epaisseur;

inkCanvas.Children.Add(polyline);


The result



Problem







c# wpf polyline inkcanvas






share|improve this question













share|improve this question











share|improve this question




share|improve this question










asked Mar 23 at 0:59









ChrisLEEChrisLEE

167




167












  • Can you explain what "I used a Stroke but I have to use a polyline so that I have to add a point at an arbitrary position" means?

    – Enigmativity
    Mar 23 at 1:13











  • @Enigmativity If I use a stroke, I don't think I can add a point so that I can change the shape of the stroke. For example, le'ts say there is a point on a straight line at each endpoint like this ㅡ. I want to add a point on a polyline between two endpoints so that I can change the shape / or V. Like the video

    – ChrisLEE
    Mar 23 at 1:31






  • 1





    Are you saying that you want it interactive?

    – Enigmativity
    Mar 23 at 2:41











  • @Enigmativity That is absolutely right.

    – ChrisLEE
    Mar 23 at 2:50











  • AFAIK that's something you need to code for. It's not built-in - you have to do your own interactivity.

    – Enigmativity
    Mar 23 at 4:21

















  • Can you explain what "I used a Stroke but I have to use a polyline so that I have to add a point at an arbitrary position" means?

    – Enigmativity
    Mar 23 at 1:13











  • @Enigmativity If I use a stroke, I don't think I can add a point so that I can change the shape of the stroke. For example, le'ts say there is a point on a straight line at each endpoint like this ㅡ. I want to add a point on a polyline between two endpoints so that I can change the shape / or V. Like the video

    – ChrisLEE
    Mar 23 at 1:31






  • 1





    Are you saying that you want it interactive?

    – Enigmativity
    Mar 23 at 2:41











  • @Enigmativity That is absolutely right.

    – ChrisLEE
    Mar 23 at 2:50











  • AFAIK that's something you need to code for. It's not built-in - you have to do your own interactivity.

    – Enigmativity
    Mar 23 at 4:21
















Can you explain what "I used a Stroke but I have to use a polyline so that I have to add a point at an arbitrary position" means?

– Enigmativity
Mar 23 at 1:13





Can you explain what "I used a Stroke but I have to use a polyline so that I have to add a point at an arbitrary position" means?

– Enigmativity
Mar 23 at 1:13













@Enigmativity If I use a stroke, I don't think I can add a point so that I can change the shape of the stroke. For example, le'ts say there is a point on a straight line at each endpoint like this ㅡ. I want to add a point on a polyline between two endpoints so that I can change the shape / or V. Like the video

– ChrisLEE
Mar 23 at 1:31





@Enigmativity If I use a stroke, I don't think I can add a point so that I can change the shape of the stroke. For example, le'ts say there is a point on a straight line at each endpoint like this ㅡ. I want to add a point on a polyline between two endpoints so that I can change the shape / or V. Like the video

– ChrisLEE
Mar 23 at 1:31




1




1





Are you saying that you want it interactive?

– Enigmativity
Mar 23 at 2:41





Are you saying that you want it interactive?

– Enigmativity
Mar 23 at 2:41













@Enigmativity That is absolutely right.

– ChrisLEE
Mar 23 at 2:50





@Enigmativity That is absolutely right.

– ChrisLEE
Mar 23 at 2:50













AFAIK that's something you need to code for. It's not built-in - you have to do your own interactivity.

– Enigmativity
Mar 23 at 4:21





AFAIK that's something you need to code for. It's not built-in - you have to do your own interactivity.

– Enigmativity
Mar 23 at 4:21












0






active

oldest

votes












Your Answer






StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");

StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);

StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);

else
createEditor();

);

function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);



);













draft saved

draft discarded


















StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55309605%2fhow-to-draw-a-modifiable-polyline-on-inkcanvas%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown

























0






active

oldest

votes








0






active

oldest

votes









active

oldest

votes






active

oldest

votes















draft saved

draft discarded
















































Thanks for contributing an answer to Stack Overflow!


  • Please be sure to answer the question. Provide details and share your research!

But avoid


  • Asking for help, clarification, or responding to other answers.

  • Making statements based on opinion; back them up with references or personal experience.

To learn more, see our tips on writing great answers.




draft saved


draft discarded














StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55309605%2fhow-to-draw-a-modifiable-polyline-on-inkcanvas%23new-answer', 'question_page');

);

Post as a guest















Required, but never shown





















































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown

































Required, but never shown














Required, but never shown












Required, but never shown







Required, but never shown







Popular posts from this blog

Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

Swift 4 - func physicsWorld not invoked on collision? The Next CEO of Stack OverflowHow to call Objective-C code from Swift#ifdef replacement in the Swift language@selector() in Swift?#pragma mark in Swift?Swift for loop: for index, element in array?dispatch_after - GCD in Swift?Swift Beta performance: sorting arraysSplit a String into an array in Swift?The use of Swift 3 @objc inference in Swift 4 mode is deprecated?How to optimize UITableViewCell, because my UITableView lags

Access current req object everywhere in Node.js ExpressWhy are global variables considered bad practice? (node.js)Using req & res across functionsHow do I get the path to the current script with Node.js?What is Node.js' Connect, Express and “middleware”?Node.js w/ express error handling in callbackHow to access the GET parameters after “?” in Express?Modify Node.js req object parametersAccess “app” variable inside of ExpressJS/ConnectJS middleware?Node.js Express app - request objectAngular Http Module considered middleware?Session variables in ExpressJSAdd properties to the req object in expressjs with Typescript