4

我正在使用 WriteableBitmap 来绘制线条

WriteableBitmap writeableBmp=new WriteableBitmap(500,500);
writeableBmp.DrawLineDDA(10, 20, 50, 70,myIntColor);

但是在这里我没有任何方法来设置线条笔画粗细。我想设置线条描边粗细。请帮帮我,

4