aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/Tango.SharedUI/IView.cs
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-01-08 19:00:50 +0200
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-01-08 19:00:50 +0200
commitdd4560b79e305772debf48cc76c9ba67af61f259 (patch)
tree9351aa19b976573c08cfcaafe6b976aaeda94fcf /Software/Visual_Studio/Tango.SharedUI/IView.cs
parentce039a3181858a2b99bf58f43db90720e26089e1 (diff)
downloadTango-dd4560b79e305772debf48cc76c9ba67af61f259.tar.gz
Tango-dd4560b79e305772debf48cc76c9ba67af61f259.zip
Added code comments for:
SharedUI.
Diffstat (limited to 'Software/Visual_Studio/Tango.SharedUI/IView.cs')
-rw-r--r--Software/Visual_Studio/Tango.SharedUI/IView.cs6
1 files changed, 6 insertions, 0 deletions
diff --git a/Software/Visual_Studio/Tango.SharedUI/IView.cs b/Software/Visual_Studio/Tango.SharedUI/IView.cs
index 6348cc466..d26bb68f8 100644
--- a/Software/Visual_Studio/Tango.SharedUI/IView.cs
+++ b/Software/Visual_Studio/Tango.SharedUI/IView.cs
@@ -6,8 +6,14 @@ using System.Threading.Tasks;
namespace Tango.SharedUI
{
+ /// <summary>
+ /// Represents an MVVM view.
+ /// </summary>
public interface IView
{
+ /// <summary>
+ /// Occurs when the view is loaded and view model is defined as data context.
+ /// </summary>
event EventHandler<IView> ViewAttached;
}
}