Browse Source

管道组件初始化修改

reconfiguration
pry 1 month ago
parent
commit
40a8ddecea
6 changed files with 6 additions and 6 deletions
  1. +1
    -1
      BPASmartClient.CustomResource/UserControls/Control/PipeLine/PipeLineBL.xaml.cs
  2. +1
    -1
      BPASmartClient.CustomResource/UserControls/Control/PipeLine/PipeLineBR.xaml.cs
  3. +1
    -1
      BPASmartClient.CustomResource/UserControls/Control/PipeLine/PipeLineH.xaml.cs
  4. +1
    -1
      BPASmartClient.CustomResource/UserControls/Control/PipeLine/PipeLineTL.xaml.cs
  5. +1
    -1
      BPASmartClient.CustomResource/UserControls/Control/PipeLine/PipeLineTR.xaml.cs
  6. +1
    -1
      BPASmartClient.CustomResource/UserControls/Control/PipeLine/PipeLineV.xaml.cs

+ 1
- 1
BPASmartClient.CustomResource/UserControls/Control/PipeLine/PipeLineBL.xaml.cs View File

@@ -87,7 +87,7 @@ namespace BPASmartClient.CustomResource.UserControls
set { SetValue(DirectionProperty, value); }
}
public static readonly DependencyProperty DirectionProperty =
DependencyProperty.Register("Direction", typeof(int), typeof(PipeLineBL), new(1, new(OnAnimationChanged)));
DependencyProperty.Register("Direction", typeof(int), typeof(PipeLineBL), new(0, new(OnAnimationChanged)));

/// <summary>
/// 液体流动速度


+ 1
- 1
BPASmartClient.CustomResource/UserControls/Control/PipeLine/PipeLineBR.xaml.cs View File

@@ -87,7 +87,7 @@ namespace BPASmartClient.CustomResource.UserControls
set { SetValue(DirectionProperty, value); }
}
public static readonly DependencyProperty DirectionProperty =
DependencyProperty.Register("Direction", typeof(int), typeof(PipeLineBR), new(1, new(OnAnimationChanged)));
DependencyProperty.Register("Direction", typeof(int), typeof(PipeLineBR), new(0, new(OnAnimationChanged)));

/// <summary>
/// 液体流动速度


+ 1
- 1
BPASmartClient.CustomResource/UserControls/Control/PipeLine/PipeLineH.xaml.cs View File

@@ -101,7 +101,7 @@ namespace BPASmartClient.CustomResource.UserControls
set { SetValue(DirectionProperty, value); }
}
public static readonly DependencyProperty DirectionProperty =
DependencyProperty.Register("Direction", typeof(int), typeof(PipeLineH), new(1, new(OnAnimationChanged)));
DependencyProperty.Register("Direction", typeof(int), typeof(PipeLineH), new(0, new(OnAnimationChanged)));

/// <summary>
/// 液体流动速度


+ 1
- 1
BPASmartClient.CustomResource/UserControls/Control/PipeLine/PipeLineTL.xaml.cs View File

@@ -87,7 +87,7 @@ namespace BPASmartClient.CustomResource.UserControls
set { SetValue(DirectionProperty, value); }
}
public static readonly DependencyProperty DirectionProperty =
DependencyProperty.Register("Direction", typeof(int), typeof(PipeLineTL), new(1, new(OnAnimationChanged)));
DependencyProperty.Register("Direction", typeof(int), typeof(PipeLineTL), new(0, new(OnAnimationChanged)));

/// <summary>
/// 液体流动速度


+ 1
- 1
BPASmartClient.CustomResource/UserControls/Control/PipeLine/PipeLineTR.xaml.cs View File

@@ -87,7 +87,7 @@ namespace BPASmartClient.CustomResource.UserControls
set { SetValue(DirectionProperty, value); }
}
public static readonly DependencyProperty DirectionProperty =
DependencyProperty.Register("Direction", typeof(int), typeof(PipeLineTR), new(1, new(OnAnimationChanged)));
DependencyProperty.Register("Direction", typeof(int), typeof(PipeLineTR), new(0, new(OnAnimationChanged)));

/// <summary>
/// 液体流动速度


+ 1
- 1
BPASmartClient.CustomResource/UserControls/Control/PipeLine/PipeLineV.xaml.cs View File

@@ -100,7 +100,7 @@ namespace BPASmartClient.CustomResource.UserControls
set { SetValue(DirectionProperty, value); }
}
public static readonly DependencyProperty DirectionProperty =
DependencyProperty.Register("Direction", typeof(int), typeof(PipeLineV), new(1, new(OnAnimationChanged)));
DependencyProperty.Register("Direction", typeof(int), typeof(PipeLineV), new(0, new(OnAnimationChanged)));

/// <summary>
/// 液体流动速度


Loading…
Cancel
Save