mirror of
https://github.com/Microsoft/calculator.git
synced 2025-07-30 03:28:24 -07:00
Allow rendering the graph on a background thread (#1014)
* Render on background thread * More work * variable fix * Add comments
This commit is contained in:
parent
f4ab94ce1c
commit
f1482252ef
9 changed files with 120 additions and 50 deletions
|
@ -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)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue