예제 #1
0
 public BuyMenuItemViewModel(IApllicationCommands applicationCommands)
 {
     Label = "Zakup";
     this.applicationCommands = applicationCommands;
     Command = new DelegateCommand(Navigate);
     Icon    = new PackIconVaadinIcons()
     {
         Kind = PackIconVaadinIconsKind.Cart
     };
 }
예제 #2
0
        public SellMenuItemViewModel(IApllicationCommands applicationCommands)
        {
            Label = "Sprzedaż";
            this.applicationCommands = applicationCommands;

            Command = new DelegateCommand(Navigate);
            Icon    = new PackIconVaadinIcons()
            {
                Kind = PackIconVaadinIconsKind.Wallet
            };
        }