aboutsummaryrefslogtreecommitdiffstats
path: root/Software/Visual_Studio/MachineStudio/Modules/Tango.MachineStudio.DB/ViewModels/ApplicationFirmwareVersionsViewVM.cs
blob: bb8abf72557d0a4a828debff6e0ebe495c88f9d2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
using Tango.BL.Entities;
using Tango.MachineStudio.Common.Notifications;

namespace Tango.MachineStudio.DB.ViewModels
{
    public class ApplicationFirmwareVersionsViewVM : DbTableViewModel<ApplicationFirmwareVersion>
    {
        public ApplicationFirmwareVersionsViewVM(INotificationProvider notification) : base(notification)
        {
        }
    }
}
>; using Tango.Settings; using Tango.Core.Cryptography; namespace Tango.MachineStudio.UI.Views { /// <summary> /// Interaction logic for LoginView.xaml /// </summary> public partial class LoginView : UserControl { public LoginView() { InitializeComponent(); this.Loaded += LoginView_Loaded; } private void LoginView_Loaded(object sender, RoutedEventArgs e) { txtEmail.Focus(); if (txtEmail.Text.IsNotNullOrWhiteSpace()) { txtPass.Focus(); } } } }