blob: b3b580fe87eb3c64ded11c29da4bec39ce5a2440 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
|
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace grapher.Models.Options
{
public class ActiveValueLabelXY
{
public const int ActiveLabelXYSeparation = 4;
public ActiveValueLabelXY(
ActiveValueLabel x,
ActiveValueLabel y)
{
X = x;
Y = y;
Combined = false;
SetCombined();
}
public ActiveValueLabel X { get; }
public ActiveValueLabel Y { get; }
public bool Combined { get; private set; }
public void SetValues(double x, double y)
{
X.SetValue(x);
Y.SetValue(y);
if (x == y)
{
SetCombined();
}
else
{
SetSeparate();
}
}
public void SetCombined()
{
if (!Combined)
{
Y.Hide();
}
Combined = true;
}
public void SetSeparate()
{
if (Combined)
{
Y.Show();
}
Combined = false;
}
}
}
|