私はwpfユーザーコントロールを持っています、その中にVisualFeedbackという名前のキャンバスを置きました、今プログラム的に私は以下を使用して日食を追加します:
Ellipse ellipse = new Ellipse
{
Fill = new SolidColorBrush(Colors.Red),
Width = 5,
Height = 5,
Opacity = 1,
Margin = new Thickness(10, 10, 0, 0)
};
VisualFeedback.Children.Add(ellipse);
ただし、アプリケーションのメインウィンドウにあるusercontrolのキャンバスには表示されません。