aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels
diff options
context:
space:
mode:
authorRoy Ben-Shabat <Roy@Twine-s.com>2018-06-18 14:49:53 +0300
committerRoy Ben-Shabat <Roy@Twine-s.com>2018-06-18 14:49:53 +0300
commitf25823d812134a71b901562b72adfdb9185812a9 (patch)
tree36e4066677bca569cffb336896b8071a5212be46 /Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels
parent647548244947e71aedb0770be0b12bd74bcf4c93 (diff)
downloadTango-f25823d812134a71b901562b72adfdb9185812a9.tar.gz
Tango-f25823d812134a71b901562b72adfdb9185812a9.zip
Fixed issue with RML in Machine Studio DB Module.
Implemented TouchTextBox. Made some modifications to ViewModel validation.
Diffstat (limited to 'Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels')
-rw-r--r--Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LoginViewVM.cs17
1 files changed, 17 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LoginViewVM.cs b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LoginViewVM.cs
new file mode 100644
index 000000000..6962de59d
--- /dev/null
+++ b/Software/Visual_Studio/PPC/Tango.PPC.UI/ViewModels/LoginViewVM.cs
@@ -0,0 +1,17 @@
+using System;
+using System.Collections.Generic;
+using System.Linq;
+using System.Text;
+using System.Threading.Tasks;
+using Tango.PPC.Common;
+
+namespace Tango.PPC.UI.ViewModels
+{
+ public class LoginViewVM : PPCViewModel
+ {
+ public override void OnApplicationStarted()
+ {
+
+ }
+ }
+}