Change ObsCollection to List in Common, write FunctionMaterialCreationVM, remove old UI, binding enums and functions to new UI.
This commit is contained in:
@@ -26,7 +26,7 @@ namespace StructureHelperCommon.Infrastructures.Interfaces
|
||||
public List<GraphPoint> Table { get; set; }
|
||||
public double MinArg { get; set; }
|
||||
public double MaxArg { get; set; }
|
||||
public ObservableCollection<IOneVariableFunction> Functions { get; set; } = new ObservableCollection<IOneVariableFunction>();
|
||||
public List<IOneVariableFunction> Functions { get; set; } = new List<IOneVariableFunction>();
|
||||
|
||||
public Guid Id => throw new NotImplementedException();
|
||||
|
||||
|
||||
@@ -28,7 +28,7 @@ namespace StructureHelperCommon.Infrastructures.Interfaces
|
||||
public double MaxArg { get; set; }
|
||||
public Color Color { get; set; }
|
||||
public string Trace { get; set; }
|
||||
public ObservableCollection<IOneVariableFunction> Functions { get; set; }
|
||||
public List<IOneVariableFunction> Functions { get; set; }
|
||||
|
||||
public bool Check();
|
||||
public double GetByX(double xValue);
|
||||
|
||||
@@ -94,7 +94,7 @@ namespace StructureHelperCommon.Infrastructures.Settings
|
||||
SubVersionNumber = 0
|
||||
};
|
||||
}
|
||||
public static ObservableCollection<IOneVariableFunction> Functions { get; set; } = new ObservableCollection<IOneVariableFunction>
|
||||
public static List<IOneVariableFunction> Functions { get; set; } = new List<IOneVariableFunction>
|
||||
{
|
||||
new TableFunction()
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user