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

GetSupport() private method

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

Usage Example

コード例 #1
0
ファイル: DetailForm.cs プロジェクト: sethjuarez/DevAV
 void BindCommands(MainViewModel viewModel) {
     biGetStarted.BindCommand(() => viewModel.GetStarted(), viewModel);
     biGetSupport.BindCommand(() => viewModel.GetSupport(), viewModel);
     biBuyNow.BindCommand(() => viewModel.BuyNow(), viewModel);
     biAbout.BindCommand(() => viewModel.About(), viewModel);
 }