diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-05 16:53:11 +0300 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-07-05 16:53:11 +0300 |
| commit | dbb891b4456d3aff7b944302e363dad9b19a24c6 (patch) | |
| tree | 43ef87e0cb48f73e4d624d33ab86579ee56edf13 /Software/Visual_Studio/PPC/Tango.PPC.Common/PPCViewModel.cs | |
| parent | 6d431e96e14bac5f8228bef69d9b79885edbbd08 (diff) | |
| download | Tango-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.cs | 12 |
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> |
