<Path>
を介してキャンバスに約 50の要素があります<Viewbox>
。<Viewbox>
も入れ子になっています。<Path>
それらの位置がセンサーデータの位置と一致する場合の不透明度を変更したいと思います。このコードは、Begin() メソッドまですべて機能します。エラーは発生せず、何もしません。また、別のものを作成しようとしましNameScopes
たが、正しい名前空間を特定できませんでした。以外のものthis
は、Begin() メソッドに到達しません。if ステートメント内に新しい Scope を作成すると、 " if (wantedNode is System.Windows.Shapes.Path)
" が Begin() になり、起動せず、二度と戻ってこない!
if (angle > 0)
{
if (angle <= 180 && angle > 150)
{
if (mag <= sweetSpot)
{
//posAlertTxt.Text = "On target...";
}
else if (mag <= step)
{
selectedStep = "step0108";
}
else if (mag <= step * 2)
.
.
.
.
すべての角度と大きさがカバーされた後:
redBrush.Color = Colors.IndianRed;
System.Windows.Media.Animation.DoubleAnimation opacityAnimation = new System.Windows.Media.Animation.DoubleAnimation();
opacityAnimation.To = 1.0;
opacityAnimation.Duration = TimeSpan.FromSeconds(1);
opacityAnimation.AutoReverse = true;
RegisterName("redBrush", redBrush);
Storyboard sb = new System.Windows.Media.Animation.Storyboard();
Storyboard.SetTargetName(opacityAnimation, "redBrush");
Storyboard.SetTargetProperty(opacityAnimation, new PropertyPath(SolidColorBrush.OpacityProperty));
sb.Children.Add(opacityAnimation);
object wantedNode = indicatorBounds.FindName(selectedStep);
if (wantedNode is System.Windows.Shapes.Path){
System.Windows.Shapes.Path wantedChild = wantedNode as System.Windows.Shapes.Path;
wantedChild.Fill = redBrush;
//System.Diagnostics.Debug.WriteLine(wantedChild.Opacity);
sb.Begin(this);
最後に、XAML:
.
.
.
.
<Viewbox Name="forceGradientContainer" Width="126" Height="457"
xmlns="http://schemas.microsoft.com/winfx/2006/xaml/presentation"
xmlns:x="http://schemas.microsoft.com/winfx/2006/xaml" Canvas.Left="117" Canvas.Top="17">
<Canvas Name="indicatorBounds" Width="126.378" Height="457.004">
<Canvas Name="holder">
.
.
.
.
<Path Fill="IndianRed" Opacity="0" x:Name="step0108" Data="F1 M 28.802,209.027 L 49.252,221.067 C 47.922,223.377 47.162,226.057 47.162,228.917 L 23.432,228.917 C 23.432,221.667 25.392,214.867 28.802,209.027 Z"/>`
.
.
.
</Canvas>
</Canvas>
</Viewbox>