Allow rendering the graph on a background thread (#1014)

* Render on background thread

* More work

* variable fix

* Add comments
This commit is contained in:
Pepe Rivera 2020-02-04 15:02:42 -08:00 committed by GitHub
parent f4ab94ce1c
commit f1482252ef
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
9 changed files with 120 additions and 50 deletions

View file

@ -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)