Set base utilities + login page. Creation of localization resources. General project info.
This commit is contained in:
24
BodyshopUploader/ViewModels/LoginViewModel.commands.cs
Normal file
24
BodyshopUploader/ViewModels/LoginViewModel.commands.cs
Normal file
@@ -0,0 +1,24 @@
|
||||
using System;
|
||||
using System.Windows.Input;
|
||||
|
||||
namespace BodyshopUploader.ViewModels
|
||||
{
|
||||
public partial class LoginViewModel : BaseViewModel
|
||||
{
|
||||
private ICommand _testCommand;
|
||||
public ICommand TestCommand
|
||||
{
|
||||
get
|
||||
{
|
||||
if (_testCommand == null)
|
||||
{
|
||||
_testCommand = new RelayCommand(
|
||||
p => true,
|
||||
p => Console.WriteLine("Hi"));
|
||||
}
|
||||
return _testCommand;
|
||||
}
|
||||
}
|
||||
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user