Added main page + started notify icon implementation.
This commit is contained in:
19
BodyshopUploader/ViewModels/MainViewModel.props.cs
Normal file
19
BodyshopUploader/ViewModels/MainViewModel.props.cs
Normal file
@@ -0,0 +1,19 @@
|
||||
using System;
|
||||
using System.Collections.Generic;
|
||||
using System.Collections.ObjectModel;
|
||||
using System.Linq;
|
||||
using System.Text;
|
||||
using System.Threading.Tasks;
|
||||
|
||||
namespace BodyshopUploader.ViewModels
|
||||
{
|
||||
public partial class MainViewModel : BaseViewModel
|
||||
{
|
||||
private int _progress = 5;
|
||||
public int Progress
|
||||
{
|
||||
get { return _progress; }
|
||||
set { SetProperty(ref _progress, value); }
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user