How do you change the thickness/weight for the rectangle outline drawn with the WriteableBitmapEx.DrawRectangle extension method? The code I use to draw the rectangle is:
WriteableBitmap wbmp = new WriteableBitmap(bmp);
wbmp.DrawRectangle(0, 0, 480, 360, Colors.DarkGray);
Using this code, the thickness of the rectangle drawn in 1px.
Workaround from WritableBitmapEx.Add Thickness param for shapes