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

GetStarted() private method

private GetStarted ( ) : void
return void
        public void GetStarted() {
            AppHelper.ProcessStart(AssemblyInfo.DXLinkGetStarted);
        }
        [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);
 }