aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCViewModel.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-07-05 16:53:11 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-07-05 16:53:11 +0300
commitdbb891b4456d3aff7b944302e363dad9b19a24c6 (patch)
tree43ef87e0cb48f73e4d624d33ab86579ee56edf13 /Software/Visual_Studio/PPC/Tango.PPC.Common/PPCViewModel.cs
parent6d431e96e14bac5f8228bef69d9b79885edbbd08 (diff)
downloadTango-dbb891b4456d3aff7b944302e363dad9b19a24c6.tar.gz
Tango-dbb891b4456d3aff7b944302e363dad9b19a24c6.zip
Working on PPC & Machine Studio Color Conversion...
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.Common/PPCViewModel.cs')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.Common/PPCViewModel.cs12
1 files changed, 6 insertions, 6 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCViewModel.cs b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCViewModel.cs
index e26abfc09..fae905b13 100644
--- a/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCViewModel.cs
+++ b/Software/Visual_Studio/PPC/Tango.PPC.Common/PPCViewModel.cs
@@ -71,14 +71,14 @@ namespace Tango.PPC.Common
private set { _settings = value; }
}
- private bool _visible;
+ private bool _isVisible;
/// <summary>
/// Gets or sets a value indicating whether this <see cref="PPCViewModel"/> view is visible.
/// </summary>
- public bool Visible
+ public bool IsVisible
{
- get { return _visible; }
- private set { _visible = value; RaisePropertyChangedAuto(); }
+ get { return _isVisible; }
+ private set { _isVisible = value; RaisePropertyChangedAuto(); }
}
/// <summary>
@@ -99,7 +99,7 @@ namespace Tango.PPC.Common
/// </summary>
public virtual void OnNavigatedTo()
{
- Visible = true;
+ IsVisible = true;
}
/// <summary>
@@ -107,7 +107,7 @@ namespace Tango.PPC.Common
/// </summary>
public virtual void OnNavigatedFrom()
{
- Visible = false;
+ IsVisible = false;
}
/// <summary>