diff options
| author | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-08 19:00:50 +0200 |
|---|---|---|
| committer | Roy Ben-Shabat <Roy@Twine-s.com> | 2018-01-08 19:00:50 +0200 |
| commit | dd4560b79e305772debf48cc76c9ba67af61f259 (patch) | |
| tree | 9351aa19b976573c08cfcaafe6b976aaeda94fcf /Software/Visual_Studio/Tango.SharedUI/IView.cs | |
| parent | ce039a3181858a2b99bf58f43db90720e26089e1 (diff) | |
| download | Tango-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.cs | 6 |
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; } } |
