Add Outlook Inspired and Stock Market demos

This commit is contained in:
maxerokh
2018-12-13 18:49:44 +03:00
parent b5cab35919
commit 2e45b5d38f
833 changed files with 124450 additions and 47 deletions

View File

@@ -0,0 +1,47 @@
using System.ComponentModel;
namespace DevExpress.StockMarketTrader.ViewModel {
public class LiveTileViewModel : ViewModelBase {
string arrow;
string companyIndex;
string persent;
string priceIncrease;
BindingList<TradingDataViewModel> source = new BindingList<TradingDataViewModel>();
public string Arrow {
get { return arrow; }
set {
arrow = value;
OnPropertyChanged("Arrow");
}
}
public string CompanyIndex {
get { return companyIndex; }
set {
companyIndex = value;
OnPropertyChanged("CompanyIndex");
}
}
public string Persent {
get { return persent; }
set {
persent = value;
OnPropertyChanged("Persent");
}
}
public string PriceIncrease {
get { return priceIncrease; }
set {
priceIncrease = value;
OnPropertyChanged("PriceIncrease");
}
}
public BindingList<TradingDataViewModel> Source {
get { return source; }
set {
source = value;
OnPropertyChanged("Source");
}
}
}
}