The CircleRuntime object can be used to draw a single-pixel-wide circle. It can display any color.
Code Example
The following code creates a CircleRuntime:
var circle = new CircleRuntime();
circle.Radius = 64;
circle.Color = Color.Green; // This is a Microsoft.Xna.Framework.Color
container.Children.Add(circle);