Hello,
Probably this is very basic question but I have spent 2 days on it and I
can't figure it out. I even watched MS's Tablet PC SDK video for over an hour
and the presenter said that there were many very easy ways of doing it
without specifying any in enough detail.
I am building a peer-to-peer shared whiteboard (c#) with Ink capability. I
have all the communication plumbing working. I envision that after the stroke
is drawn, I will copy the stroke to the other peer and add it to its
InkCollector with a statement like this:
private void inkStrokeEvent(object sender, InkCollectorStrokeEventArgs e) {
inkPanel.Ink.Strokes.Add(e.Stroke);
}
But this doesn't seem to do anything. Am I copying stroke to the right
object? What's the correct method to add to Ink? I don't want to use
clipboard. Thanks in advance.
Regards,
Vinay Agarwal
|