Commit 2b306a2c by 鲁志-悦动

算法参数的中英文

parent 824a9ac8
...@@ -54,4 +54,16 @@ ...@@ -54,4 +54,16 @@
<sys:String x:Key="AlgorithmParameter">AlgorithmParameter</sys:String> <sys:String x:Key="AlgorithmParameter">AlgorithmParameter</sys:String>
<sys:String x:Key="Match">Match</sys:String> <sys:String x:Key="Match">Match</sys:String>
<sys:String x:Key="Tips">Tips</sys:String> <sys:String x:Key="Tips">Tips</sys:String>
<sys:String x:Key="EndingFigureNumber">Ending figure number</sys:String>
<sys:String x:Key="IntervalFrame">Interval frame</sys:String>
<sys:String x:Key="IntervalPixel">Interval pixel</sys:String>
<sys:String x:Key="DetectZoneX">Detect zone X</sys:String>
<sys:String x:Key="DetectZoneY">Detect zone Y</sys:String>
<sys:String x:Key="TrackingZone">Tracking zone</sys:String>
<sys:String x:Key="MattingZoneScale">Matting zone scale</sys:String>
<sys:String x:Key="EndingFigureIntervalFrame">Ending figure interval frame</sys:String>
<sys:String x:Key="IgnoreZoneH">Ignore zone H</sys:String>
<sys:String x:Key="IgnoreZoneW">Ignore zone W</sys:String>
<sys:String x:Key="LargeModel">Large model</sys:String>
<sys:String x:Key="ExtendFrame">Extend frame</sys:String>
</ResourceDictionary> </ResourceDictionary>
\ No newline at end of file
...@@ -53,4 +53,16 @@ ...@@ -53,4 +53,16 @@
<sys:String x:Key="AlgorithmParameter">算法参数</sys:String> <sys:String x:Key="AlgorithmParameter">算法参数</sys:String>
<sys:String x:Key="Match">赛事</sys:String> <sys:String x:Key="Match">赛事</sys:String>
<sys:String x:Key="Tips">提示</sys:String> <sys:String x:Key="Tips">提示</sys:String>
<sys:String x:Key="EndingFigureNumber">出点后抠像数量</sys:String>
<sys:String x:Key="IntervalFrame">间隔帧率</sys:String>
<sys:String x:Key="IntervalPixel">间隔像素</sys:String>
<sys:String x:Key="DetectZoneX">检测区域X值</sys:String>
<sys:String x:Key="DetectZoneY">检测区域Y值</sys:String>
<sys:String x:Key="TrackingZone">跟踪区域值</sys:String>
<sys:String x:Key="MattingZoneScale">抠像区域系数</sys:String>
<sys:String x:Key="EndingFigureIntervalFrame">出点后抠像间隔帧</sys:String>
<sys:String x:Key="IgnoreZoneH">忽略框高</sys:String>
<sys:String x:Key="IgnoreZoneW">忽略框宽</sys:String>
<sys:String x:Key="LargeModel">大模型</sys:String>
<sys:String x:Key="ExtendFrame">扩展帧</sys:String>
</ResourceDictionary> </ResourceDictionary>
\ No newline at end of file
...@@ -124,6 +124,7 @@ ...@@ -124,6 +124,7 @@
Width="550" Width="550"
Height="40" Height="40"
Margin="0,10,0,10" Margin="0,10,0,10"
FontSize="16"
SelectedValue="{Binding PresetsItem, Mode=TwoWay}" SelectedValue="{Binding PresetsItem, Mode=TwoWay}"
Style="{StaticResource ComboBoxStyle}"> Style="{StaticResource ComboBoxStyle}">
<b:Interaction.Triggers> <b:Interaction.Triggers>
...@@ -149,24 +150,29 @@ ...@@ -149,24 +150,29 @@
<RowDefinition Height="60" /> <RowDefinition Height="60" />
</Grid.RowDefinitions> </Grid.RowDefinitions>
<Grid.ColumnDefinitions> <Grid.ColumnDefinitions>
<ColumnDefinition Width="1.5*" />
<ColumnDefinition /> <ColumnDefinition />
<ColumnDefinition Width="1.8*" />
<ColumnDefinition /> <ColumnDefinition />
<ColumnDefinition /> <ColumnDefinition />
<ColumnDefinition /> <ColumnDefinition />
<ColumnDefinition Width="1.2*" />
<ColumnDefinition />
</Grid.ColumnDefinitions> </Grid.ColumnDefinitions>
<Grid.Resources>
<Style TargetType="TextBlock">
<Setter Property="HorizontalAlignment" Value="Right" />
<Setter Property="VerticalAlignment" Value="Center" />
<Setter Property="Foreground" Value="White" />
<Setter Property="FontSize" Value="16" />
<Setter Property="Margin" Value="0,0,6,0" />
</Style>
</Grid.Resources>
<TextBlock <TextBlock
Grid.ColumnSpan="2" Grid.ColumnSpan="2"
HorizontalAlignment="Left"
VerticalAlignment="Center" VerticalAlignment="Center"
FontSize="18" FontSize="18"
Foreground="White"
Text="{DynamicResource AlgorithmParameter}" /> Text="{DynamicResource AlgorithmParameter}" />
<TextBlock <TextBlock Grid.Row="1" Text="{DynamicResource EndingFigureNumber}" />
Grid.Row="1"
VerticalAlignment="Center"
Foreground="White"
Text="maintain_matting_n" />
<TextBox <TextBox
Grid.Row="1" Grid.Row="1"
Grid.Column="1" Grid.Column="1"
...@@ -184,9 +190,7 @@ ...@@ -184,9 +190,7 @@
<TextBlock <TextBlock
Grid.Row="1" Grid.Row="1"
Grid.Column="2" Grid.Column="2"
VerticalAlignment="Center" Text="{DynamicResource IntervalFrame}" />
Foreground="White"
Text="matting_interval" />
<TextBox <TextBox
Grid.Row="1" Grid.Row="1"
Grid.Column="3" Grid.Column="3"
...@@ -199,9 +203,7 @@ ...@@ -199,9 +203,7 @@
<TextBlock <TextBlock
Grid.Row="1" Grid.Row="1"
Grid.Column="4" Grid.Column="4"
VerticalAlignment="Center" Text="{DynamicResource IntervalPixel}" />
Foreground="White"
Text="moving_pixel" />
<TextBox <TextBox
Grid.Row="1" Grid.Row="1"
Grid.Column="5" Grid.Column="5"
...@@ -211,11 +213,7 @@ ...@@ -211,11 +213,7 @@
<local:TextBoxEnterKeyUpdateBehavior /> <local:TextBoxEnterKeyUpdateBehavior />
</b:Interaction.Behaviors> </b:Interaction.Behaviors>
</TextBox> </TextBox>
<TextBlock <TextBlock Grid.Row="2" Text="{DynamicResource DetectZoneX}" />
Grid.Row="2"
VerticalAlignment="Center"
Foreground="White"
Text="pad_det_x" />
<TextBox <TextBox
Grid.Row="2" Grid.Row="2"
Grid.Column="1" Grid.Column="1"
...@@ -228,9 +226,7 @@ ...@@ -228,9 +226,7 @@
<TextBlock <TextBlock
Grid.Row="2" Grid.Row="2"
Grid.Column="2" Grid.Column="2"
VerticalAlignment="Center" Text="{DynamicResource DetectZoneY}" />
Foreground="White"
Text="pad_det_y" />
<TextBox <TextBox
Grid.Row="2" Grid.Row="2"
Grid.Column="3" Grid.Column="3"
...@@ -243,9 +239,7 @@ ...@@ -243,9 +239,7 @@
<TextBlock <TextBlock
Grid.Row="2" Grid.Row="2"
Grid.Column="4" Grid.Column="4"
VerticalAlignment="Center" Text="{DynamicResource TrackingZone}" />
Foreground="White"
Text="pad_det_square" />
<TextBox <TextBox
Grid.Row="2" Grid.Row="2"
Grid.Column="5" Grid.Column="5"
...@@ -258,9 +252,7 @@ ...@@ -258,9 +252,7 @@
<TextBlock <TextBlock
Grid.Row="3" Grid.Row="3"
Grid.Column="0" Grid.Column="0"
VerticalAlignment="Center" Text="{DynamicResource MattingZoneScale}" />
Foreground="White"
Text="scale" />
<TextBox <TextBox
Grid.Row="3" Grid.Row="3"
Grid.Column="1" Grid.Column="1"
...@@ -270,12 +262,10 @@ ...@@ -270,12 +262,10 @@
<local:TextBoxEnterKeyUpdateBehavior /> <local:TextBoxEnterKeyUpdateBehavior />
</b:Interaction.Behaviors> </b:Interaction.Behaviors>
</TextBox> </TextBox>
<TextBlock <!--<TextBlock
Grid.Row="3" Grid.Row="3"
Grid.Column="2" Grid.Column="2"
VerticalAlignment="Center" Text="{DynamicResource ExtendFrame}" />
Foreground="White"
Text="extend_frame" />
<TextBox <TextBox
Grid.Row="3" Grid.Row="3"
Grid.Column="3" Grid.Column="3"
...@@ -284,17 +274,15 @@ ...@@ -284,17 +274,15 @@
<b:Interaction.Behaviors> <b:Interaction.Behaviors>
<local:TextBoxEnterKeyUpdateBehavior /> <local:TextBoxEnterKeyUpdateBehavior />
</b:Interaction.Behaviors> </b:Interaction.Behaviors>
</TextBox> </TextBox>-->
<TextBlock <TextBlock
Grid.Row="3" Grid.Row="3"
Grid.Column="4" Grid.Column="2"
VerticalAlignment="Center" Text="{DynamicResource EndingFigureIntervalFrame}" />
Foreground="White"
Text="landing_frame_interval" />
<TextBox <TextBox
Grid.Row="3" Grid.Row="3"
Grid.Column="5" Grid.Column="3"
Style="{StaticResource TextBoxStyle}" Style="{StaticResource TextBoxStyle}"
Text="{Binding Landing_frame_interval, Mode=TwoWay}"> Text="{Binding Landing_frame_interval, Mode=TwoWay}">
<b:Interaction.Behaviors> <b:Interaction.Behaviors>
...@@ -303,14 +291,12 @@ ...@@ -303,14 +291,12 @@
</TextBox> </TextBox>
<TextBlock <TextBlock
Grid.Row="4" Grid.Row="3"
Grid.Column="0" Grid.Column="4"
VerticalAlignment="Center" Text="{DynamicResource IgnoreZoneH}" />
Foreground="White"
Text="bbox_min_h" />
<TextBox <TextBox
Grid.Row="4" Grid.Row="3"
Grid.Column="1" Grid.Column="5"
Style="{StaticResource TextBoxStyle}" Style="{StaticResource TextBoxStyle}"
Text="{Binding Bbox_min_h, Mode=TwoWay}"> Text="{Binding Bbox_min_h, Mode=TwoWay}">
<b:Interaction.Behaviors> <b:Interaction.Behaviors>
...@@ -320,13 +306,11 @@ ...@@ -320,13 +306,11 @@
<TextBlock <TextBlock
Grid.Row="4" Grid.Row="4"
Grid.Column="2" Grid.Column="0"
VerticalAlignment="Center" Text="{DynamicResource IgnoreZoneW}" />
Foreground="White"
Text="bbox_min_w" />
<TextBox <TextBox
Grid.Row="4" Grid.Row="4"
Grid.Column="3" Grid.Column="1"
Style="{StaticResource TextBoxStyle}" Style="{StaticResource TextBoxStyle}"
Text="{Binding Bbox_min_w, Mode=TwoWay}"> Text="{Binding Bbox_min_w, Mode=TwoWay}">
<b:Interaction.Behaviors> <b:Interaction.Behaviors>
...@@ -337,8 +321,8 @@ ...@@ -337,8 +321,8 @@
<CheckBox <CheckBox
Grid.Row="4" Grid.Row="4"
Grid.Column="5" Grid.Column="5"
Margin="14" Margin="0,12"
Content="big_model" Content="{DynamicResource LargeModel}"
FontSize="16" FontSize="16"
Foreground="White" Foreground="White"
IsChecked="{Binding Path=IsBigModel, Mode=TwoWay}" IsChecked="{Binding Path=IsBigModel, Mode=TwoWay}"
......
...@@ -9,13 +9,20 @@ namespace VIZ.FGOUT.Module ...@@ -9,13 +9,20 @@ namespace VIZ.FGOUT.Module
/// </summary> /// </summary>
public partial class AlgorithmSettingPanelView : UserControl public partial class AlgorithmSettingPanelView : UserControl
{ {
AlgorithmSettingPanelViewModel vm = new AlgorithmSettingPanelViewModel();
public AlgorithmSettingPanelView() public AlgorithmSettingPanelView()
{ {
InitializeComponent(); InitializeComponent();
WPFHelper.BindingViewModel(this, new AlgorithmSettingPanelViewModel()); //WPFHelper.BindingViewModel(this, new AlgorithmSettingPanelViewModel());
WPFHelper.BindingViewModel(this, vm);
if (vm.IsChinese)
_Sports_.ItemsSource = new List<string>() { "", "跳远", "三级跳", "跳马", "标枪", "自由操", "单杠", "高低杠", "单人3m跳水", "单人10m跳水", "双人3m跳水", "双人10m跳水", "双人速度攀岩" }; _Sports_.ItemsSource = new List<string>() { "", "跳远", "三级跳", "跳马", "标枪", "自由操", "单杠", "高低杠", "单人3m跳水", "单人10m跳水", "双人3m跳水", "双人10m跳水", "双人速度攀岩" };
else
_Sports_.ItemsSource = new List<string>() { "", "Long Jump", "Triple Jump", "Vault", "Javelin Throw", "Floor Exercise", "Horizontal Bar", "Uneven Bars", "DIV -3m Springboard",
"DIV-10m platform", "DIV- Synchronised 3m Springboard", "DIV-Synchronised 10m platform", "Speed" };
//_Eases1_.ItemsSource = _Eases2_.ItemsSource = new List<string>() { "", "Linear", "Step", "SinusoidalIn", "SinusoidalOut", "SinusoidalInOut", "EaseIn", "EaseOut", "EaseInOut", "ExpoIn", //_Eases1_.ItemsSource = _Eases2_.ItemsSource = new List<string>() { "", "Linear", "Step", "SinusoidalIn", "SinusoidalOut", "SinusoidalInOut", "EaseIn", "EaseOut", "EaseInOut", "ExpoIn",
//"ExpoOut", "ExpoInOut", "CircularIn", "CircularOut", "CircularInOut" }; //"ExpoOut", "ExpoInOut", "CircularIn", "CircularOut", "CircularInOut" };
} }
......
...@@ -19,10 +19,27 @@ namespace VIZ.FGOUT.Module ...@@ -19,10 +19,27 @@ namespace VIZ.FGOUT.Module
/// </summary> /// </summary>
public class AlgorithmSettingPanelViewModel : ViewModelBase, INDISetting public class AlgorithmSettingPanelViewModel : ViewModelBase, INDISetting
{ {
public bool IsChinese { get; set; } = true;
public AlgorithmSettingPanelViewModel() public AlgorithmSettingPanelViewModel()
{ {
// 初始化命令 // 初始化命令
this.InitComand(); this.InitComand();
//初始化语言
InitLanguage();
}
private SetLanguageConfig _setLanguageConfig;
/// <summary>
/// 初始化语言
/// </summary>
private void InitLanguage()
{
this._setLanguageConfig = ApplicationDomainEx.LiteDbContext.SetLanguageConfig.FindAll().FirstOrDefault();
if (_setLanguageConfig == null) return;
if (!_setLanguageConfig.IsChinese)
IsChinese = false;
} }
/// <summary> /// <summary>
...@@ -32,8 +49,9 @@ namespace VIZ.FGOUT.Module ...@@ -32,8 +49,9 @@ namespace VIZ.FGOUT.Module
{ {
this.LoadedCommand = new VCommand(this.Loaded); this.LoadedCommand = new VCommand(this.Loaded);
this.PresetsSelectionChangedCommand = new VCommand(this.PresetsSelectionChanged); this.PresetsSelectionChangedCommand = new VCommand(this.PresetsSelectionChanged);
//this.Maintain_matting_nTextChangedCommand = new VCommand<RoutedEventArgs>(this.Maintain_matting_nTextChanged); //this.Maintain_matting_nTextChangedCommand = new VCommand<RoutedEventArgs>(this.Maintain_matting_nTextChanged);
this.Maintain_matting_nTextChangedCommand = new VCommand(this.Maintain_matting_nTextChanged); //this.Maintain_matting_nTextChangedCommand = new VCommand(this.Maintain_matting_nTextChanged);
} }
// ====================================================================================== // ======================================================================================
...@@ -159,10 +177,9 @@ namespace VIZ.FGOUT.Module ...@@ -159,10 +177,9 @@ namespace VIZ.FGOUT.Module
//} //}
private void Maintain_matting_nTextChanged() //private void Maintain_matting_nTextChanged()
{ //{
//}
}
#region LoadedCommand -- 加载命令 #region LoadedCommand -- 加载命令
...@@ -183,8 +200,7 @@ namespace VIZ.FGOUT.Module ...@@ -183,8 +200,7 @@ namespace VIZ.FGOUT.Module
vm.Settings.Add(this); vm.Settings.Add(this);
// 加载算法分类信息 // 加载算法分类信息
if (ApplicationDomainEx.CsvContext.AlgorithmStrategys == null) if (ApplicationDomainEx.CsvContext.AlgorithmStrategys == null) return;
return;
List<AlgorithmStrategyModel> all = new List<AlgorithmStrategyModel>(); List<AlgorithmStrategyModel> all = new List<AlgorithmStrategyModel>();
List<AlgorithmStrategyGroupModel> groups = new List<AlgorithmStrategyGroupModel>(); List<AlgorithmStrategyGroupModel> groups = new List<AlgorithmStrategyGroupModel>();
...@@ -222,12 +238,17 @@ namespace VIZ.FGOUT.Module ...@@ -222,12 +238,17 @@ namespace VIZ.FGOUT.Module
var number = this.ViewConfig.GameName; var number = this.ViewConfig.GameName;
if (!string.IsNullOrEmpty(number)) if (!string.IsNullOrEmpty(number))
{ {
if (IsChinese)
_initItem = PresetsItem = dics[number]; _initItem = PresetsItem = dics[number];
else
_initItem = PresetsItem = enDics[number];
var config = ApplicationDomainEx.LiteDbContext.JavelinThrowConfig.FindOne(p => p.Number == number); var config = ApplicationDomainEx.LiteDbContext.JavelinThrowConfig.FindOne(p => p.Number == number);
if(config == null) if(config == null) return;
return;
//初始化UE预设数据 //初始化UE预设数据
//InitUEDetail(config.Data); //InitUEDetail(config.Data);
//初始化算法数据 //初始化算法数据
InitAlgorithmData(config.AlgorithmData); InitAlgorithmData(config.AlgorithmData);
} }
...@@ -642,8 +663,7 @@ namespace VIZ.FGOUT.Module ...@@ -642,8 +663,7 @@ namespace VIZ.FGOUT.Module
_algorithmMessage = package == null ? string.Empty : JsonConvert.SerializeObject(package, JSON_SERIALIZER_SETTINGS); _algorithmMessage = package == null ? string.Empty : JsonConvert.SerializeObject(package, JSON_SERIALIZER_SETTINGS);
//如果体育项目没有更改,也向算法发送参数,此时算法不重启 //如果体育项目没有更改,也向算法发送参数,此时算法不重启
if (_initItem == (PresetsItem ?? string.Empty)) if (_initItem == (PresetsItem ?? string.Empty)) manager.SendJson(package);
manager.SendJson(package);
//MessageBoxEx.ShowDialog("发送成功 IP = " + manager.IP + " Port =" + manager.Port); //MessageBoxEx.ShowDialog("发送成功 IP = " + manager.IP + " Port =" + manager.Port);
//MessageBoxEx.ShowDialog("发送成功"); //MessageBoxEx.ShowDialog("发送成功");
...@@ -663,17 +683,37 @@ namespace VIZ.FGOUT.Module ...@@ -663,17 +683,37 @@ namespace VIZ.FGOUT.Module
// { "LJ", "跳远" }, { "TJ", "三级跳" }, { "VT", "跳马" }, { "JT", "标枪" }, { "FX", "自由操" }, { "PB", "单杠" }, { "UB", "高低杠" } // { "LJ", "跳远" }, { "TJ", "三级跳" }, { "VT", "跳马" }, { "JT", "标枪" }, { "FX", "自由操" }, { "PB", "单杠" }, { "UB", "高低杠" }
// , { "DS", "单人3m跳水" } , { "DT", "单人10m跳水" } , { "SS", "双人3m跳水" } , { "ST", "双人10m跳水" } , { "SP", "双人速度攀岩" } // , { "DS", "单人3m跳水" } , { "DT", "单人10m跳水" } , { "SS", "双人3m跳水" } , { "ST", "双人10m跳水" } , { "SP", "双人速度攀岩" }
//}; //};
Dictionary<string, string> dics = new Dictionary<string, string> Dictionary<string, string> dics = new Dictionary<string, string>
{ {
{ "LJ", "跳远" }, { "TJ", "三级跳" }, { "VT", "跳马" }, { "JT", "标枪" }, { "FX", "自由操" }, { "HB", "单杠" }, { "UB", "高低杠" } { "LJ", "跳远" }, { "TJ", "三级跳" }, { "VT", "跳马" }, { "JT", "标枪" }, { "FX", "自由操" }, { "HB", "单杠" }, { "UB", "高低杠" }
, { "DS", "单人3m跳水" } , { "DT", "单人10m跳水" } , { "SS", "双人3m跳水" } , { "ST", "双人10m跳水" } , { "SP", "双人速度攀岩" } , { "DS", "单人3m跳水" } , { "DT", "单人10m跳水" } , { "SS", "双人3m跳水" } , { "ST", "双人10m跳水" } , { "SP", "双人速度攀岩" }
}; };
Dictionary<string, string> enDics = new Dictionary<string, string>
{
{ "LJ", "Long Jump" }, { "TJ", "Triple Jump" }, { "VT", "Vault" }, { "JT", "Javelin Throw" }, { "FX", "Floor Exercise" }, { "HB", "Horizontal Bar" }, { "UB", "Uneven Bars" }
, { "DS", "DIV -3m Springboard" } , { "DT", "DIV-10m platform" } , { "SS", "DIV- Synchronised 3m Springboard" } , { "ST", "DIV-Synchronised 10m platform" } , { "SP", "Speed" }
};
/// <summary>
/// 传value拿到下标,返回key
/// </summary>
/// <param name="number"></param>
/// <returns></returns>
private string GetDicKey(string number) private string GetDicKey(string number)
{ {
if (IsChinese)
{
var index = dics.Values.ToList().IndexOf(number); var index = dics.Values.ToList().IndexOf(number);
return dics.Keys.ToList()[index]; return dics.Keys.ToList()[index];
} }
else
{
var index = enDics.Values.ToList().IndexOf(number);
return enDics.Keys.ToList()[index];
}
}
private JavelinThrowConfig GetConfig(string number) private JavelinThrowConfig GetConfig(string number)
{ {
...@@ -698,11 +738,12 @@ namespace VIZ.FGOUT.Module ...@@ -698,11 +738,12 @@ namespace VIZ.FGOUT.Module
//} //}
//else //else
//{ //{
var config = GetConfig(PresetsItem); var config = GetConfig(PresetsItem);
if(config == null) if (config == null) return;
return;
//InitUEDetail(config.Data); //InitUEDetail(config.Data);
InitAlgorithmData(config.AlgorithmData); InitAlgorithmData(config.AlgorithmData);
//} //}
} }
......
...@@ -54,6 +54,7 @@ ...@@ -54,6 +54,7 @@
Grid.Column="1" Grid.Column="1"
Width="150" Width="150"
Height="40" Height="40"
FontSize="16"
ItemsSource="{Binding Path=LanguageInfos, Mode=OneWay}" ItemsSource="{Binding Path=LanguageInfos, Mode=OneWay}"
SelectedIndex="{Binding SelectedLanguageInfoIndex, Mode=TwoWay}" SelectedIndex="{Binding SelectedLanguageInfoIndex, Mode=TwoWay}"
Style="{StaticResource ComboBoxStyle}" /> Style="{StaticResource ComboBoxStyle}" />
......
using System.Collections.Generic; using System.Collections.Generic;
using System.Linq; using System.Linq;
using System.Text.RegularExpressions;
using System.Windows; using System.Windows;
using VIZ.FGOUT.Domain; using VIZ.FGOUT.Domain;
using VIZ.FGOUT.Storage; using VIZ.FGOUT.Storage;
......
#pragma checksum "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "189B639FA1C3B5B1F4DF5BACD75606309FCADA1C445602332E998542C87BA1F7" #pragma checksum "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "CC989D6504985BCA61AE42CD1DA999CE9AB41EB9DA9DF59583A6FCC696855461"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
......
#pragma checksum "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "189B639FA1C3B5B1F4DF5BACD75606309FCADA1C445602332E998542C87BA1F7" #pragma checksum "..\..\..\..\..\NDISettingView\View\AlgorithmSettingPanelView.xaml" "{8829d00f-11b8-4213-878b-770e8597ac16}" "CC989D6504985BCA61AE42CD1DA999CE9AB41EB9DA9DF59583A6FCC696855461"
//------------------------------------------------------------------------------ //------------------------------------------------------------------------------
// <auto-generated> // <auto-generated>
// 此代码由工具生成。 // 此代码由工具生成。
......
C:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\obj\x64\Debug\GeneratedInternalTypeHelper.g.cs 
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\NDIMainView\View\NDIMainView.xaml;; FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\NDIMainView\View\NDIMainView.xaml;;
FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\NDIPreviewView\View\NDIPreviewView.xaml;; FC:\Projects\FGOUT\VIZ.FGOUT\VIZ.FGOUT.Module\NDIPreviewView\View\NDIPreviewView.xaml;;
......
...@@ -20,7 +20,7 @@ namespace VIZ.Framework.Common ...@@ -20,7 +20,7 @@ namespace VIZ.Framework.Common
#region PART #region PART
/// <summary> /// <summary>··········
/// 确定按钮 /// 确定按钮
/// </summary> /// </summary>
private Button PART_YesButton; private Button PART_YesButton;
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment