Allow rendering the graph on a background thread (#1014)
* Render on background thread * More work * variable fix * Add comments
This commit is contained in:
@@ -47,11 +47,13 @@ public
|
||||
{
|
||||
if (value < Min)
|
||||
{
|
||||
value = Min;
|
||||
Min = value;
|
||||
RaisePropertyChanged(L"Min");
|
||||
}
|
||||
else if (value > Max)
|
||||
{
|
||||
value = Max;
|
||||
Max = value;
|
||||
RaisePropertyChanged(L"Max");
|
||||
}
|
||||
|
||||
if (Value != value)
|
||||
|
Reference in New Issue
Block a user