Hello,
How to added BorderColor and BorderThickness in XAML with CircleTransformation?
There are properties for that:
<fftransformations:CircleTransformation BorderColor="#FFFFFF" BorderWidth="5"/>
For anyone that comes to this question via Google. It's now
BorderHexColor="#FFFFFF" BorderSize="1
How do you set a border for a regular CachedImage that does not require a CircleTransformation?
How do you set a border for a regular
CachedImagethat does not require aCircleTransformation?
Hi @stesvis
I have solved with this code:
<ffimage:CachedImage.Transformations>
<fftrans:RoundedTransformation BorderHexColor="#000000" BorderSize="5" Radius="-1" CropHeightRatio="0" CropWidthRatio="0" />
</ffimage:CachedImage.Transformations>
Have a nice day! 馃槃