Quellcode durchsuchen

管道组件初始化修改

reconfiguration
pry vor 1 Monat
Ursprung
Commit
40a8ddecea
6 geänderte Dateien mit 6 neuen und 6 gelöschten Zeilen
  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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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 Datei anzeigen

@@ -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>
/// 液体流动速度


Laden…
Abbrechen
Speichern