This commit is contained in:
xyy
2026-04-02 14:34:29 +08:00
parent e25f4b0e2f
commit 2b3da1e2e5
10 changed files with 245 additions and 92 deletions

View File

@@ -3,7 +3,7 @@ using System.Runtime.CompilerServices;
namespace MembranePoreTester.Models
{
public class BubblePointRecord: INotifyPropertyChanged
public class BubblePointRecord : INotifyPropertyChanged
{
public string SampleType { get; set; } // 平板膜/中空纤维膜
public string SampleSpec { get; set; } // 规格
@@ -49,6 +49,9 @@ namespace MembranePoreTester.Models
public DateTime TestDate { get; set; } = DateTime.Now;
public string Tester { get; set; }
public string SpeedRate1 { get; set; }
public double MaxPoreSize => CalculateMaxPore();
private double CalculateMaxPore()