初始化

This commit is contained in:
GukSang.Jin
2026-01-14 09:33:34 +08:00
parent a82ac199bd
commit c0913d0e62
2 changed files with 10 additions and 3 deletions

View File

@@ -43,9 +43,11 @@ namespace COFTester.Resources
// 中间图表 // 中间图表
["FrictionCurve"] = "摩擦力曲线", ["FrictionCurve"] = "摩擦力曲线",
["ForceCurve"] = "力值曲线", ["ForceCurve"] = "力值曲线",
["DisplacementAxis"] = "位移 (mm)", //["DisplacementAxis"] = "位移 (mm)",
["ForceAxis"] = "力值 (N)", //["ForceAxis"] = "力值 (N)",
["DisplacementAxis"] = "Displacement (mm)",
["ForceAxis"] = "Force (N)",
// 右侧面板 - 测试结果 // 右侧面板 - 测试结果
["TestResults"] = "测试结果", ["TestResults"] = "测试结果",
["StaticCOF"] = "静摩擦系数 (μs)", ["StaticCOF"] = "静摩擦系数 (μs)",

View File

@@ -21,5 +21,10 @@ namespace COFTester.Views
var viewModel = new MainViewModel(daqService, processingService, FrictionPlot); var viewModel = new MainViewModel(daqService, processingService, FrictionPlot);
this.DataContext = viewModel; this.DataContext = viewModel;
} }
private void Button_Click(object sender, RoutedEventArgs e)
{
}
} }
} }