diff options
| author | Shlomo Hecht <shlomo@twine-s.com> | 2018-05-17 22:39:00 +0300 |
|---|---|---|
| committer | Shlomo Hecht <shlomo@twine-s.com> | 2018-05-17 22:39:00 +0300 |
| commit | c46f5f21663d6878f4aa94a0ebfd573845063c0f (patch) | |
| tree | 94013e158738c6df0ef694363b04ffe96c648829 /Software/Visual_Studio/PanelPC/Tango.PanelPC.UI/ViewModels/MainViewVM.cs | |
| parent | 850eb9adb82aac85e928bf7a4533ee4c1f693ad2 (diff) | |
| parent | ede7471b32b1157ee932fa8f6e7918b8f147b36e (diff) | |
| download | Tango-c46f5f21663d6878f4aa94a0ebfd573845063c0f.tar.gz Tango-c46f5f21663d6878f4aa94a0ebfd573845063c0f.zip | |
Merge branch 'master' of https://twinetfs.visualstudio.com/_git/Tango
Diffstat (limited to 'Software/Visual_Studio/PanelPC/Tango.PanelPC.UI/ViewModels/MainViewVM.cs')
| -rw-r--r-- | Software/Visual_Studio/PanelPC/Tango.PanelPC.UI/ViewModels/MainViewVM.cs | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Software/Visual_Studio/PanelPC/Tango.PanelPC.UI/ViewModels/MainViewVM.cs b/Software/Visual_Studio/PanelPC/Tango.PanelPC.UI/ViewModels/MainViewVM.cs new file mode 100644 index 000000000..71501c8b1 --- /dev/null +++ b/Software/Visual_Studio/PanelPC/Tango.PanelPC.UI/ViewModels/MainViewVM.cs @@ -0,0 +1,20 @@ +using System; +using System.Collections.Generic; +using System.Linq; +using System.Text; +using System.Threading.Tasks; +using Tango.PanelPC.UI.PanelPCApplication; +using Tango.SharedUI; + +namespace Tango.PanelPC.UI.ViewModels +{ + public class MainViewVM : ViewModel + { + public String Test { get; set; } + + public MainViewVM(IPanelPCApplicationManager application) + { + Test = "This is a binding test"; + } + } +} |
