WPF InkCanva中操作Stroke进行平移的方法
2021-03-01 00:26
标签:笔迹 for etl rgba col false poi bsp 移动 WPF InkCanva中操作Stroke进行平移的方法 标签:笔迹 for etl rgba col false poi bsp 移动 原文地址:https://www.cnblogs.com/lhyAira/p/14443277.htmlpublic virtual void Transform(Matrix transformMatrix, bool applyToStylusTip)
TranslateTransform translate = new TranslateTransform();
translate.X = point.X;
translate.Y = point.Y;
Matrix matrixTranslate = translate.Value;
_stroke.Transform(matrixTranslate, false);
文章标题:WPF InkCanva中操作Stroke进行平移的方法
文章链接:http://soscw.com/index.php/essay/58312.html