DevExpress.OutlookInspiredApp.Win.ViewModel.MainViewModel.BuyNow C# (CSharp) Method

BuyNow() private method

private BuyNow ( ) : void
return void
        public void BuyNow() {
            AppHelper.ProcessStart(AssemblyInfo.DXLinkBuyNow);
        }
        [Command]

Usage Example

Ejemplo n.º 1
0
 void BindCommands(MainViewModel viewModel) {
     biGetStarted.BindCommand(() => viewModel.GetStarted(), viewModel);
     biGetSupport.BindCommand(() => viewModel.GetSupport(), viewModel);
     biBuyNow.BindCommand(() => viewModel.BuyNow(), viewModel);
     biAbout.BindCommand(() => viewModel.About(), viewModel);
 }