I start develop for WP and, i need do simple think - add to text border.
Something like this
In Android i do this very simple
@Override
protected void onDraw(Canvas canvas) {
final ColorStateList textColor = getTextColors();
TextPaint paint = this.getPaint();
paint.setStyle(Paint.Style.STROKE);
paint.setStrokeJoin(Paint.Join.ROUND);
paint.setStrokeMiter(10);
this.setTextColor(getResources().getColor(R.color.gs_ColorWhite));
paint.setStrokeWidth(48);
super.onDraw(canvas);
paint.setStyle(Paint.Style.FILL);
setTextColor(textColor);
super.onDraw(canvas);
}
But, i can't find how to do this in Windows Phone platform.